当我的JSON数据在静态文件中时,我的jqGrid正常工作,但是如果我将数据复制到var然后尝试将var加载到它没有显示的jqGrid的url中。
可以将字符串传递给jqGrid
e.g。 这有效:
function GetJSON() {
var jsonFile = "EntityWithChildren.json";
return jsonFile;//returning a file works fine.
}
$("#jsonmap").jqGrid({
url: GetJSON(),
datatype: 'json',
这不是:
function GetJSON() {
var json = '{"page":"1","total":"10", "records":"10", "Entities": [ {"Fields":["Entity1", "field1", "11"]}, {"Fields":["", "field2", "22"]}, {"Fields":["Entity2", "field3", "33"]}, {"Fields":["ChildEntity1", "cfield1", "111"]} ]}';
return json; //doesnt work
}
$("#jsonmap").jqGrid({
url: GetJSON(),
datatype: 'json',
//datatype: 'jsonstring',//this doesnt work either
答案 0 :(得分:16)
datatype: 'jsonstring',
datastr: GetJSON(),