次のような app-object コンストラクターがあります。
var app = function(loadedsettings) {
return {
init: function() {
this.loop();
},
loop: function() {
this.update();
window.requestAnimationFrame(this.loop);
},
update: function() {
//loop through settings and call update on every object.
},
settings: [
//array of settings objects, all with update methods.
]
};
}
それから私がするとき:
var theApp = app(settings);
theApp.init();
私は得る:
Uncaught TypeError: Object [object global] has no method 'update'
requestAnimationFrame が呼び出されると、ループ関数内の this-value が window に設定されるためです。
「theApp」オブジェクトを this-value として設定して requestAnimatinFrame を呼び出す方法を知っている人はいますか?