I'm trying to use call
to pass the context of the Utilities object so I can access its members (allData array, etc) within the myTest
function.
I'm getting error:
ReferenceError: allData is not defined
This tells me the context is lost and I guess I'm not binding the context correctly. How do I do this?
var Utilities = {
allData : [],
storage : [],
apiRequest : function () {
this.allData = ["a","b","c"];
var myTest = this.allData.map.call(this, function (i, el) {
var url = 'testPHP.php/translate_tts?ie=utf-8&tl=zh-CN&q=' + i;
return $.get(url, function (returned_data) {
this.storage.push(returned_data);
});
});
$.when.apply($, myTest).done(function () {
log('done!');
log(this.storage[i]);
});
Reminder
There is only function level context in Javascript, and
this
is nothing more than a local variable. By default,this
is set to the globalwindow
object:Or to the object from which the function was invoked:
Knowing this, read the following carefully:
As you can see,
this
is automatically set at function invocation. This is the default behaviour, but you can also do it yourself using either.call()
or.apply()
(one shot):And more recently,
.bind()
(permanent):Your question
I would use
.bind()
: