1
如何在調用我的回調函數時保留this
?ExtJs 4.1再次調用範圍
init: function() {
console.log(this); // constructor, YES!
this.readConfig();
},
readConfig: function() {
console.log(this); // constructor, YES!
this.httpApi.request({
module : 'monitor',
func : 'getConfig',
success : this.readConfigCallback,
scope : this
});
},
readConfigCallback: function(oResponse) {
console.log(this); // Window, NO!
var oView = this.getView(); // error...
}
感謝幫助。將來會使用。 – Patrick