我现在已经使用了jqGrid很长时间,没有任何问题。 今天我尝试在ASP.NET MVC 2项目中实现它,事情没有按预期工作 经过一番努力,我意识到现在控制器在返回JSON数据时不接受GET调用。这是出于安全原因。 如果我强制我的控制器支持GET - 强制JSON响应如下:
return(Json(value, JsonRequestBehavior.AllowGet))
...并指定
[AcceptVerbs( HttpVerbs.Get )]
方法
一切正常,我的jqGrid显示结果。
我试图改变jqGrid的动词 myType:'POST'
但电网停止工作。
我做了一些调试和跟踪,似乎jqGrid从不POST请求。
我的控制器总是收到GET。
请有人帮助我。
由于
阿尔贝托
示例:
jQuery("#ProvincesDynamicGrid").jqGrid({
url: '<%=Url.Action("Fetch", "Provinces")%>',
postData: { id: '0' },
datatype: 'json',
myType: 'POST',
colNames: ['Descr', 'Prov', 'Regione'],
colModel: [{ name: 'Description', index: 'Description', editable: false, resizable: true, sortable: false, width: 200, align: 'right' },
{ name: 'Initial', index: 'Initial', editable: true, editrules: { required: true, custom: true, custom_func: ValidateInitialColum }, resizable: true, sortable: false, width: 90, align: 'right' },
{ name: 'RegionDescription', index: 'RegionDescription', editable: false, resizable: true, sortable: false, width: 200, align: 'right' }
],
pager: $('#ProvincesDynamicPager'),
rowNum: 11,
// rowList: [10, 20, 50],
width: 748,
height: 253,
viewrecords: true,
shrinkToFit: false,
scroll: false,
rownumbers: true,
hidegrid: false,
caption: 'Gestione Province',
cellEdit: true,
cellsubmit: 'remote',
cellurl: '<%=Url.Action("SaveProvince", "Provinces")%>',
onSelectRow: function(id) {
SelectedRowId = id;
},
beforeSaveCell: function(rowid, cellname, value, iRow, iCol) {
},
afterSubmitCell: function(serverresponse, rowid, cellname, value, iRow, iCol) {
var resp = jQuery.parseJSON(serverresponse.responseText);
// if (resp.Status == false)
return ([resp.Status, resp.Message])
//alert(resp.Message);
}
});
答案 0 :(得分:1)
正如Tony在jqGrid论坛中建议的那样,我错误地使用了 mtype 参数(myType:'POST') 所以确切的代码是这样的:
jQuery("#ProvincesDynamicGrid").jqGrid({
url: '<%=Url.Action("Fetch", "Provinces")%>',
postData: { id: '0' },
datatype: 'json',
mtype: 'POST',
colNames: ['Descr', 'Prov', 'Regione'],
colModel: [{ name: 'Description', index: 'Description', editable: false, resizable: true, sortable: false, width: 200, align: 'right' },
{ name: 'Initial', index: 'Initial', editable: true, editrules: { required: true, custom: true, custom_func: ValidateInitialColum }, resizable: true, sortable: false, width: 90, align: 'right' },
{ name: 'RegionDescription', index: 'RegionDescription', editable: false, resizable: true, sortable: false, width: 200, align: 'right' }
],
pager: $('#ProvincesDynamicPager'),
rowNum: 11,
...
现在一切正常。