我的4.2.1 ExtJS应用程序监听每个Ajax请求(Ext.data.Connection
),这样我就可以进行自定义错误处理和其他工作。
我在Main Controller
Ext.define('App.controller.Main', {
extend: 'Ext.app.Controller',
init: function (application) {
var me = this;
this.control({
'[xtype=login] button#btnLogin': {
click: me.onLogin
},
});
Ext.util.Observable.observe(Ext.data.Connection, {
requestcomplete: function (conn, response, options) {
// Do stuff on success
},
requestexception: me.handleRequestException // Do stuff on failure
});
},
handleRequestException: function (conn, response, options) {
var me = this;
if (response.status == 401) {
// here i need to fire the logoutApplication method
// have tried: me.fireEvent('logoutApplication'); but fireEvent is undefined because "me" scope is data.Connection
// it doesnt know about the controller.
}
},
logoutApplication: function () {
var me = this;
// do somestuff here!!
}
在handleRequestException
函数内部我尝试me.fireEvent(...)
但fireEvent
为undefined
,因为该函数的scope
为data.Connection
。< / p>
我不想要使用:
var mainController = App.app.getController('App.controller.Main');
因为在调用时init
被触发并且我遇到了两次事件触发的问题。
我是ExtJS
的新人,所以我相信有更好的方法可以做到这一点。感谢任何建议。
答案 0 :(得分:0)
您可以向侦听器配置添加scope
:
Ext.util.Observable.observe(Ext.data.Connection, {
requestcomplete: function (conn, response, options) {
// Do stuff on success
},
requestexception: me.handleRequestException, // Do stuff on failure
scope: me // add the scope here
});
现在,您使用该范围而不是调用者范围执行侦听器。