gpt4 book ai didi

jquery - 如何将 JSON 字符串或 JSON 对象与 jqGrid 一起使用?

转载 作者:行者123 更新时间:2023-12-03 22:30:49 25 4
gpt4 key购买 nike

当我的 JSON 数据位于静态文件中时,我的 jqGrid 可以工作,但是如果我将数据复制到 var,然后尝试将 var 加载到 jqGrid 的 url 中,它不会显示。

可以将字符串传递到jqGrid

例如这有效:

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

最佳答案

明白了。需要使用 datastr 而不是 url

datatype: 'jsonstring',
datastr: GetJSON(),

关于jquery - 如何将 JSON 字符串或 JSON 对象与 jqGrid 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3628770/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com