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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:22:33+00:00 2026-05-30T13:22:33+00:00

I am new to backbonejs. I am trying to pass the correct this object

  • 0

I am new to backbonejs. I am trying to pass the correct this object to a callback function where that function is a method of the view.

My current solution:

APP.LocationFormView = APP.View.extend({
    initialize: function () {    
        if (navigator.geolocation) {
            var that = this;

            var success = function(position) {
                _.bind(that.onSuccessUpdatePos, that, position)();
            };

            var error = function(error) {
                _.bind(that.onFailUpdatePos, that, error)();
            }

            navigator.geolocation.getCurrentPosition(success, 
                                                     error);
        } else {

        }
    },

    onSuccessUpdatePos: function(position) {
        // We can access "this" now
    },

    onFailUpdatePos : function(error) {
        // We can access "this" now
    }
});

Is this a correct way to achieve what I want?
Is there any less verbose solution for this?

  • 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-30T13:22:34+00:00Added an answer on May 30, 2026 at 1:22 pm

    This is how I would do it. One nice aspect of bindAll is that if you add additional functions to LocationFormView they will automatically have this bound.

    APP.LocationFormView = APP.View.extend({
        initialize: function () {   
            _.bindAll(this); 
            if (navigator.geolocation) {
                navigator.geolocation.getCurrentPosition(this.onSuccessUpdatePos, 
                                                         this.onFailUpdatePos);
            } else {
    
            }
        },
    
        onSuccessUpdatePos: function(position) {
            // We can access "this" now
        },
    
        onFailUpdatePos : function(error) {
            // We can access "this" now
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a Backbone.js/Rails app and I'm trying to create a new object through
I am new to backbone and trying out my first app after going through
I am using backbone and trying to create a new object and I am
I'm trying to keep track of the state in this app using Backbone.js: I
I'm new to Backbone and I'm trying to get a basic view rendered using
I'm trying to pass the data from client to server via Backbone.js's save() method.
I'm relatively new to Backbone, and I'm trying to pass data back and forth
I'm trying to make a quick sample Backbone.js app that has a Post model,
In backbone.js under the inherits method, the authors does this: var ctor = function()
I am new to Backbone.js. I have created a View for a button that

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.