如何在jqGRid中使用此错误属性。要解析所有错误并将其显示在对话框中。
基本上只需检查状态是否为“ ERROR”,然后显示所有错误。
谢谢!
#1 楼
在上一个问题的答案的最后一部分,我已经尝试过给出当前问题的答案。可能我表示的不够清楚。您不应将有关错误的信息放置在标准成功响应中。您应该只遵循用于服务器与客户端之间的通信的HTTP协议的主要规则。
网格中的加载数据,行的编辑以及与服务器的所有Ajax通信都是在实现方面HTTP协议。每个HTTP响应在响应的第一行中都有状态代码。了解此含义非常重要。
带有JSON数据的典型成功请求如下所示
HTTP/1.1 200 OK
...
Content-Type: application/json
...
{"page":"1",....}
如果尝试输入的URL例如,服务器响应的第一行将是
HTTP/1.1 404 Not Found
,并且基于HTTP状态代码的jqGrid(在这种情况下为404)*将不会尝试将服务器响应解释为包含具有网格内容的数据的数据。
该演示具有以下代码
$("#list").jqGrid({
url: 'Unknown.json', // there are no file with the name
datatype: 'json',
// ... some other typical parameters
loadComplete: function () {
alert("OK");
},
loadError: function (jqXHR, textStatus, errorThrown) {
alert('HTTP status code: ' + jqXHR.status + '\n' +
'textStatus: ' + textStatus + '\n' +
'errorThrown: ' + errorThrown);
alert('HTTP message body (jqXHR.responseText): ' + '\n' + jqXHR.responseText);
}
});
,该代码显示警报消息如下所示:
此外,在
jqXHR.responseText
中,您将以字符串形式找到服务器响应的全文。下一条警报将显示响应。利用以上所有信息,我想向您展示错误响应和成功响应将由您使用的整个软件堆栈(jqGrid,jQuery,
XMLHttpRequest
对象,...)。因此,如果将检测到错误,则应仅在服务器响应中使用错误的HTTP状态代码。例如,在答案中,您将看到如何使用ASP.NET MVC。在这里,您可以找到
loadError
实现的另一个版本,该版本等待以JSON形式输入:{"Source":"some error source",Message:"Description of the error"}
,错误输出将如下所示但是该代码还可以显示由您的Web服务器生成的HTML响应:
您可以轻松修改代码以达到目的。您可以在下面找到的代码
loadComplete: function () {
// remove error div if exist
$('#' + this.id + '_err').remove();
},
loadError: function (jqXHR, textStatus, errorThrown) {
// remove error div if exist
$('#' + this.id + '_err').remove();
// insert div with the error description before the grid
$(this).closest('div.ui-jqgrid').before(
'<div id="' + this.id + '_err" style="max-width:' + this.style.width +
';"><div class="ui-state-error ui-corner-all" style="padding:0.7em;float:left;">' +
decodeErrorMessage(jqXHR, textStatus, errorThrown) +
'</div><div style="clear:left"/></div>'
);
}
其中
decodeErrorMessage
函数定义为var decodeErrorMessage = function (jqXHR, textStatus, errorThrown) {
var htmlBody, errorInfo, i, errorText = '',
errorIconSpan = '<span class="ui-icon ui-icon-alert" style="float:left; display: inline-block; margin-right: .3em;"></span>';
if (textStatus) {
errorText = textStatus;
}
if (errorThrown) {
if (errorText.length > 0) {
errorText += '<hr/>';
}
errorText += errorThrown;
}
if (typeof (jqXHR.responseText) === "string") {
if (jqXHR.responseText.charAt(0) === '[') {
try {
errorInfo = $.parseJSON(jqXHR.responseText);
errorText = "";
for (i = 0; i < errorInfo.length; i += 1) {
if (errorText.length !== 0) {
errorText += "<hr/>";
}
errorText += errorInfo[i].Source + ": " + errorInfo[i].Message;
}
} catch (e) { }
errorText = errorIconSpan + errorText;
} else {
htmlBody = /<body.*?>([\s\S]*)<\/body>/i.exec(jqXHR.responseText);
if (htmlBody !== null && htmlBody.length > 1) {
errorText = htmlBody[1];
}
}
} else {
errorText = errorIconSpan + errorText;
}
return '<div style="float:left">' + errorText + '</div>';
};
更新:免费jqGrid包含
loadError
的默认实现(请参见此处和此处),在大多数Ajax错误的情况下,它会生成相对可读的错误消息。它将在错误div中显示结果文本,该文本存在于网格主体上方。因此,建议在使用自定义loadError
之前测试默认行为是否会产生良好的结果。如果您确实需要创建自己的loadError
,则可以使用免费jqGrid的displayErrorMessage
方法将错误消息放在错误div中:$("#grid").jqGrid("displayErrorMessage", customErrorMessage);
评论
谢谢!你是对的。答案还介绍了在编辑模式下使用的错误。
–奥列格(Oleg)
2011年8月6日在21:47