Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7085639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:26:57+00:00 2026-05-28T07:26:57+00:00

I have what should be very simple. I create a new collection, and I

  • 0

I have what should be very simple. I create a new collection, and I want to pass it to a render and add the collection models to the page.

get_results: function(){
    $.getJson(this.url,function(response){
        this.search_results = new Kitchon.Collections.searchList(response);
        console.log(this.search_results);
        this.search_results.each(this.render_match);
    }
},
render_match: function(model){
    console.log(model)
},

This returns an error

Uncaught TypeError: undefined is not a function

my collection has an ordinary structure

_byCid: Object
_byId: Object
_onModelEvent: function () { [native code] }
_removeReference: function () { [native code] }
length: 7
models: Array[7]
__proto__: o

I’ve tried LOTS of things, but one thing that stuck out was maybe I had to pass
this.search_results.models.each(this.render_match); as that is the actual array, but if I do that I get a Uncaught typeError: Object [object Object],[object Object],...

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:26:58+00:00Added an answer on May 28, 2026 at 7:26 am

    you lose the execution context when callback function for each method is called

    use _.bind(this.render_match, this) when passing callback to make sure that render_match has the right context

    and you were getting error because you didn’t wrap the callback function for getJson method neither. You have to use underscore bind method there as well.

    You should read a bit about javascript this and how to tame it – try here http://yehudakatz.com/2011/08/11/understanding-javascript-function-invocation-and-this/

    Correct code should look more or less like this…

    get_results: function(){
    
        $.getJSON(this.url, _.bind(function(response){
    
            this.search_results = new Kitchon.Collections.searchList(response);
            console.log(this.search_results);
            this.search_results.each(_.bind(this.render_match, this));
        }, this));
    },
    render_match: function(model){
    
        console.log(model)
    },
    

    Though from what I seee – I assume the code you’ve shown here is either a model or collection – is handling rendering the view – you shouldn’t do that! Models and Collections are only to store and parse data – all rendering and controlling application flow should be done in the View(Controllers) with help of the Router.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very simple python script that should scan a text file, which
I have a very simple yes no question: should static methods have same result
I have written a very simple control. C# Visual Studio 2008. Its output should
I have a very simple page that simply prompts the user for a name
I have been wrestling with what should be a very simple thing for weeks
I'm trying to do something which should be very simple...I have a site with
I have a simple rails application in which I'm trying to add a very
I have an issue with something that should be very simple databinding scenario. I
I have this very simple CODE, which should generate me HTML, but all I
I have a very thin interface that's going to define one method. Should I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.