我正在使用store.synch()方法发布数据。 并且从服务器端完成验证,目前我正在使用消息框显示错误消息。 现在我想以不同的方式显示错误,但不是markInvalid()因为为此我必须更改每个js fiels和api。 所以有任何markInvalid()的替代方法吗?
答案 0 :(得分:1)
Extjs数据存储提供了监听器,其中一个监听器是execption
这是代码。
listeners: { //Exception Handler for the Ajax Request
exception: function(proxy, response, operation){
var error = Ext.decode(response.responseText);
Ext.MessageBox.show({
title: 'REMOTE EXCEPTION',
msg: error.message,
icon: Ext.MessageBox.ERROR,
buttons: Ext.Msg.OK
});
}
}
顺便说一句,我没有得到 markInvalid()
答案 1 :(得分:0)
嗨Naresh Tank,我的问题解决方案是监控所有ajax请求。这样,您可以发送您想要的错误消息,无论这来自商店还是表单。
我希望这有帮助。
在app.js上
init: function() {
this.addAjaxErrorHandler(this);
},
addAjaxErrorHandler: function(object) {
Ext.Ajax.on('requestexception', function(conn, response, options, e) {
var statusCode = response.status,
errorText = null,
captionText = response.statusText;
if (statusCode === 0 || statusCode === 401) {
Ext.Ajax.abortAll();
}
if(response.statusText==="Authorization Required"){
Ext.Ajax.abortAll();
}
// 404 - file or method not found - special case
if (statusCode == 404) {
Ext.MessageBox.alert('Error 404', 'URL ' + response.request.options.url + ' not found');
return;
}
if (response.responseText !== undefined) {
var r = Ext.decode(response.responseText, true);
if (r !== null) {
errorText = r.ErrorMessage;
}
if (errorText === null)
errorText = response.responseText;
}
if (!captionText)
captionText = 'Error ' + statusCode;
Ext.MessageBox.alert(captionText, errorText);
},
object);
Ext.Ajax.on('requestcomplete', function(conn, response, options, e) {
var statusCode = response.status,
errorText = null,
captionText = response.statusText;
if (response.responseText !== undefined) {
var r = Ext.decode(response.responseText, true);
if (r !== null && r.success === false) {
try{
if(typeof r.data[0].idUsr !== 'undefined')
return;
}catch(e){}
errorText = r.msg;
if (errorText === null)
errorText = response.responseText;
if (!captionText)
captionText = 'Error ' + statusCode;
Ext.MessageBox.alert(captionText, errorText);
}
}
},
object);
};