我对在 MVC2 中处理 ajax 发布请求的指南感到困惑我如何知道网格作为请求参数传递的数据是什么?以什么顺序和什么数据类型?因为知道这一点后,只有一个人可以设计服务器端的post方法。我已经看到许多具有不同函数原型作为服务器端方法处理程序的示例。
这怎么可能?我的意思是它与做 ajax 发布的 jqgrid 相同。对于同一个 jqgrid,如何有不同类型的函数原型作为服务器端操作?
编辑
我的要求是,当 JqGrid 进行 ajax 调用时,我想发送一些额外的数据,例如下拉列表选择值。但是 MVC 只接受 JqGrid 参数。尽管我通过“paramData”添加了额外的数据并且我能够在控制器请求处理程序中接收它,但我有一个解决方法。问题是我们使用了一个 Grid 类来反序列化 Grid 参数,而这个类对应用程序来说是全局的。所以为每一页修改它是不行的。
我需要的是这不起作用,仅填充第一个参数:-
public void Jgrid(Jgrid grid,object hdnupdpg,string p_roleid)
{
}
但是我如何让 Jgrid.ajax 调用发送这些其他参数?仅使用“ paramsData ”选项?
这是我遇到的服务器端功能原型:
public void JGridData(JGrid grid)
{
}
这是网格类
public class JGrid
{
private bool IsSearch;
public string sidx { get; set; }
public string sord { get; set; }
public int page { get; set; }
public int rows { get; set; }
public bool _search
{
get
{
string strSearch = HttpContext.Current.Request["_search"];
if (!string.IsNullOrEmpty(strSearch))
return Convert.ToBoolean(strSearch);
else
return IsSearch;
}
set { IsSearch = value; }
}
public string searchOper { get; set; }
public string filters { get; set; }
public int totalRecords { get; set; }
public string procName { get; set; }
public string SearchValue { get; set; }
public string SearchField { get; set; }
public string defaultFilter { get; set; }
public string SortExpression
{
get { return sidx + " " + sord; }
}
public string FilterExpression
{
get
{
string filter = BuildFilter();
if (!string.IsNullOrEmpty(defaultFilter) && !string.IsNullOrEmpty(filter))
return defaultFilter
+ " AND (" + filter + ")";
else if (!string.IsNullOrEmpty(defaultFilter))
return defaultFilter;
return filter;
}
}
public string BuildFilter()
{
....
}
}
编辑
Here is my Script for JqGrid
jQuery('#jgrid').jqGrid({
autowidth: true,
altRows: true,
altclass: 'grdAltRwClr',
datatype: 'local',
forceFit: true,
gridview: true,
height: 290,
mtype: 'post',
rowList: [10, 20, 30],
rowNum: 10,
pager: '#pager',
pagerpos: 'right',
recordpos: 'left',
rownumbers: false,
scrollrows: false,
sortname: 'roledtlid',
toolbar: [true, "top"],
url: rootPath + 'RoleDetail/JGridData',
postData: { extraparams: function() { return escape(jQuery('#hdnupdpg').val()); },
parentid: function() { return escape(jQuery('#p_roleid').val()); }
},
beforeSelectRow: function(rowid, e) { return false; },
gridComplete: function() { GridComplete() },
colModel: [
{ name: 'act', label: 'View', resizable: false, search: false, sortable: false, title: false, width: 6, index: 'act' }
, { name: 'roleid', label: 'Role id', width: 10, index: 'roleid' }
, { name: 'rolename', label: 'Role Name', width: 25, index: 'rolename' }
, { name: 'pgname', label: 'Page Name', width: 30, index: 'pgname' }
, { name: 'canedit', label: 'Edit', width: 10, index: 'canedit' }
, { name: 'canview', label: 'View', width: 10, index: 'canview' }
]
});