有些人可以帮我解决这个问题。
2>'/'应用程序中的服务器错误。无效的JSON原语:_search。 描述:执行当前Web请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。
异常详细信息:System.ArgumentException:无效的JSON原语:_search。
gridtable.jqGrid({
datatype: 'json',
mtype: 'POST',
url: Configuration.Endpoint.user + '/Url',
ajaxGridOptions: { contentType: "application/json" },
height: 'auto',
autowidth: true,
gridview: true,
rowNum: 10,
colNames: [],
colModel: [],
jsonReader: { root: "Data.rows", total: "Data.total", records: "Data.records", repeatitems: true, cell: "", id: "0" },
pager: '#pager',
loadonce: true,
ignoreCase: true,
headertitles: true,
//Getting Error here in xhr
loadError: function (xhr, st, err) {
alert("Load incomplete error");
console.log(xhr);
console.log(st);
console.log(err);
},