Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using global variables in backbone.js

So, first question I couldn't find an answer to. Might be reason enough to ask my own first question. Apologies if the answer can be found outside the scope of backbone.js.

In a backbone.js app, I need to have access to several variables in different functions, so I have to use some global variables setup.

I'm wondering if my current solution is acceptable/good practise. My IDE (IDEA) seems to think it isn't:

var MyModel = Backbone.Model.extend({

initialize:function(){
  var myGlobalVar, myOtherGlobalVar;//marked as unused local variable
},

myFunction:function() {          
      myGlobalVar = value;//marked as implicitly declared
      model.set({"mrJson": {"email": myGlobalVar}});
      model.save();
    });
  }
},

myOtherFunction:function() {          
      myOtherGlobalVar = otherValue;//marked as implicitly declared
      model.set({"mrJson": {"email": myGlobalVar, "other": myOtherGlobalVar}});
      model.save();
    });
  }
}
}

I tried declaring the implicitly declared globals, but that resulted in them not being accessible from the othe function.

Is there a proper way to do handle these global variables in backbone.js?

like image 633
Sephie Avatar asked Feb 23 '12 11:02

Sephie


1 Answers

The way you are currently declaring the variables, they are in the function initialize scope, rather than then object MyModel scope. To define the variables as Model variables (accessible to all object functions) do:

var MyModel = Backbone.Model.extend({

myGlobalVar: null,
myOtherGlobalVar: null,

initialize:function(){
  console.log(this.myGlobalVar)
},
...
like image 125
lamplightdev Avatar answered Oct 01 '22 19:10

lamplightdev