我做了一个演示,用jqGrid
表创建动态列,但遇到了一些问题。这是jqGrid代码段:
$.ajax(
{
type: "get",
url: "reports/providerList",
dataType: "json",
success: function(result)
{
var colNames = result.rows.colNames;
var colModels = result.rows.colModels;
$(grid_selector).jqGrid('GridUnload');
jQuery(grid_selector).jqGrid({
url: 'reports/getData',
datatype: 'json',
mtype: 'get',
colNames: colNames,
colModel: colModels,
viewrecords : true,
rownumbers:true,
rowNum:15,
rowList:[15,30],
pager : pager_selector,
altRows: true,
loadComplete : function() {
var table = this;
setTimeout(function(){
updatePagerIcons(table);
enableTooltips(table);
}, 0);
},
});
},
error: function(x, e)
{
alert(x.readyState + " "+ x.status +" "+ e.msg);
}
});
我的后端控制器:
@GetMapping("/providerList")
@ResponseBody
public Map<String, Object> providerList(@RequestParam(value = "rows", required = false) Integer pageSize, @RequestParam(value = "page", required = false) Integer pageNumber){
JQGridModel jqGridModel = new JQGridModel();
Map<String, Object> map = new HashedMap();
map.put("total", 4);
map.put("rows", jqGridModel);
map.put("records", 6);
return map;
}
@GetMapping("/getData")
@ResponseBody
public Map<String, Object> getData(){
List<ColData> colDatas = new ArrayList<>();
ColData colData1 = new ColData(2, "hello", new Date().toString(), "true", "admin");
ColData colData2 = new ColData(5, "say", new Date().toString(), "false", "pechen");
colDatas.add(colData1);
colDatas.add(colData2);
colDatas.add(colData2);
Map<String, Object> map = new HashedMap();
map.put("total", 4);
map.put("rows", colDatas);
map.put("records", 6);
return map;
}
后端的数据格式:
public class JQGridModel {
private List<String> colNames;
private List<ColModel> colModels;
public JQGridModel() {
colNames = new ArrayList<>();
colNames.add("id");
colNames.add("name");
colNames.add("createTime");
colNames.add("status");
colNames.add("updateBy");
colModels = new ArrayList<>();
ColModel colModel1 = new ColModel("id", "id", 60f, false, false);
ColModel colModel2 = new ColModel("name", "index", 60f, false, false);
colModels.add(colModel1);
colModels.add(colModel2);
colModels.add(colModel2);
colModels.add(colModel2);
colModels.add(colModel2);
}
}
我注意到/reports/providerList
和/reports/getData
在调试模式下被点击了。出了什么问题,有人可以帮忙吗?
答案 0 :(得分:0)
错误的起源在我看来是JQGridModel
构造函数的最后几行。您多次使用colModels.add(colModel2)
。这是错的。 colNames
包含标签:列标题中显示的文字。允许在colNames
中使用重复或空字符串。另一方面,colModel
必须包含唯一 name
值,这些值不能为空,不能包含空格。
您必须更改JQGridModel
构造函数colModels
的代码,并使用您当前用来填充colNames
的名称填充它。