我在我的类方法之一中使用 forEach 遍历数组。我需要访问 forEach 中的类的实例,但这是未定义的。
var aGlobalVar = {};
(function () {
"use strict";
aGlobalVar.thing = function() {
this.value = "thing";
}
aGlobalVar.thing.prototype.amethod = function() {
data.forEach(function(d) {
console.log(d);
console.log(this.value);
});
}
})();
var rr = new aGlobalVar.thing();
rr.amethod();
我有一个我在这里工作的小提琴:http: //jsfiddle.net/NhdDS/1/。