作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我的 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/
我是一名优秀的程序员,十分优秀!