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 8628443
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T08:32:43+00:00 2026-06-12T08:32:43+00:00

I would like to do pass a function to backbone’s success callback like this

  • 0

I would like to do pass a function to backbone’s success callback like this

this.model.fetch({
    success: this.setup
});

However, that won’t work I end up having to pass the whole environment and wrap inside a function like that:

var that = this;
this.model.fetch({
    success: function(){
        that.setup();
    }
});

Why can’t I do this? Even if I bind the setup function to it’s parent like so _.bind( this.setup, this );, it still won’t use the proper this (its’ parent). But only if its’ not wrapped in a function…

  • 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-06-12T08:32:44+00:00Added an answer on June 12, 2026 at 8:32 am

    _.bind returns a function bound to an object, it does not modify the original function (basically it creates the wrapped function you wrote).

    However, you could pass this bound function as a callback

    this.model.fetch({
        success: _.bind(this.setup, this);
    });
    

    or use _.bindAll which does modify the object to use bound functions:

    var V = Backbone.View.extend({
        initialize: function() {
            _.bindAll(this, "setup");
    
            this.model.fetch({
                success: this.setup
            });
        },
        setup: function() {
    
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to pass a parameter to a function. However, inside this parameter,
I need to pass multiple arguments to a function that I would like to
I have a function that I would like to pass in null for the
i would like to pass multiple parameters in my callback function and don't know
I would like to pass a pointer by reference to a function, such that
I have a function that is called getUserID and I would like to pass
I would like to pass a parameter to the callback function of gadget.io.MakeRequest .
I would like to pass a lambda to a funciton. This boost::function<void()> fncPtr(boost::bind<void>([](){/* something
I would like to pass to a jQuery function a regular function, instead of
I would like to create some sort of function where you pass in a

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.