0

我正在尝试获取与存储在服务器中的文件相关的 jQGrid,该文件看起来类似于:

    {"newRow":[{
                 "rowId":"r02",
                  "address": [{
                                  "pc":"02020",
                                  "city":"Madrid"
                            ]},
              ]},
     "newCell":[{
                   "rowId":"r02",
                   "cellId":"r02",
                   "outCome":"200"
               ]},
     "newCell":[{
                [{
                   "rowId":"r02",
                   "cellId":"r03",
                   "outCome":"220"
               ]}
               ]},
     "newProvider":[{
                      "cellId":"r03",
                      "name":"Peter"
                   ]},
     "newProvider":[{
                      "cellId":"r03",
                      "name":"Jay"
                   ]},
     }

对于我在某些链接中读到的内容,它应该有另一个结构,但我也读到可以修改 jsonReader 以使其适应我的结构。但我不知道如何做到这一点。提前致谢。

4

1 回答 1

0

你必须使用jsonReader. 这是文档的 linf 。

您应该将其用作函数。看起来很不错。

jsonReader: {
  repeatitems: false,
  id: "Id",
  root: function (obj) { return obj; },
  page: function (obj) { return 1; },
  total: function (obj) { return 1; },
  records: function (obj) { return obj.length; }
}
于 2013-11-28T22:05:22.643 回答