我是一个MVC项目。从我的角度来看,我正在进行AJAX调用以获取JSON数据。当我使用javascriptDeserializer对我的类进行解除分类时,从我的控制器,我得到
{
"page":1,
"total":2,
"records":2,
"rows":[
{"id":1,"cell":["ToolVersion","1","ESP","1.2","2/2/2013"]},
{"id":2,"cell":["ToolVersion","2","OPT","1.3","3/3/2013"]}
]
}
动作方法如下
var lst = obj.GetDetails(); // this returns the instance of MyCustomJQGrid class.
return Json(new
{
total = 2,
page = 1,
records = 2,
rows = lst.rows.ToArray()
}, JsonRequestBehavior.AllowGet);
public class MyCustoMJQGrid
{
public class Row
{
public int id { get; set; }
public List<string> cell { get; set; }
public Row()
{
cell = new List<string>();
}
}
public int page { get; set; }
public int total { get; set; }
public int records { get; set; }
public List<Row> rows { get; set; }
public JQGrid()
{
rows = new List<Row>();
}
}
在视图中,我使用下面的代码
$('#list2').jqGrid({
url: '@(Url.Action("GetToolVersionDetails", "Admin"))',
datatype: 'json',
colNames: ['TableName','RowId', 'ColA', 'ColB', 'ColC'],
mtype: 'GET',
colModel: [
{ name: 'TableName', index: 'TableName', width: 150 },
{ name: 'RowId', index: 'RowId', width: 150 },
{ name: 'ColA', index: 'ColA', width: 250 },
{ name: 'ColB', index: 'ColB', width: 250 },
{ name: 'ColC', index: 'ColC', width: 250 }
],
jsonReader: {
root: 'rows',
total: 'total',
page: 'page',
records: 'records',
cell: 'cell',
id: 'id',
repeatitems: false
},
rowNum: 10,
rowList: [5, 10, 20, 30],
pager: $('#gridpager'),
sortname: 'RowId',
viewrecords: true,
sortorder: 'asc',
caption: 'Tool Version',
shrinkToFit: true,
width: $('#gridContainer').width(),
height: 200,
hidegrid: false,
});
jqgrid显示有两个空行。没有数据显示。它只显示一个有两行的空白表。 JSON数据未显示。
请帮助。
感谢。