2

在我的数据网格中,我使用龙卷风服务器从 json 中转储的数据库中读取
如果访问了 api/notes,它看起来像这样:(
{"total": 0, "rows": "[]"}
表最初是空的,用户应该填充它......)当然 dataSource 是:

   transport: {
      read: {
        url: '/api/notes/',
        dataType: 'json',
        type: 'GET',
      },


      parameterMap: function(options, operation) {
        var map = {};
        if (operation == 'read') {
            map.page = options.page;
            map.rows = options.take;
            map.sort = options.sort;
            if (map.sort) {
              map.sort = map.sort[0];
              if (map.sort) {
                var t = map.sort;
                map.sort = t.field;
                map.order = t.dir;
              }
            }

在页面加载时我得到 Uncaught ReferenceError: uid is not defined

铬转储:

Uncaught ReferenceError: uid is not defined
(anonymous function)
h.extend._rowsHtmlkendo.web.min.js:10
h.extend.refreshkendo.web.min.js:10
e.extend.proxy.gjquery.min.js:2
B.extend.triggerkendo.web.min.js:10
o.extend._processkendo.web.min.js:10
o.extend.successkendo.web.min.js:10
e.extend.proxy.gjquery.min.js:2
p.extend.read.c.successkendo.web.min.js:10
f.Callbacks.njquery.min.js:2
f.Callbacks.o.fireWithjquery.min.js:2
wjquery.min.js:4
f.support.ajax.f.ajaxTransport.send.djquery.min.js:4
4

2 回答 2

2

尝试设置数据源的架构

schema: {
  total: "total",
  data: "rows"
}
于 2012-12-23T21:20:43.917 回答
0

问题是我
在 json.loads() 中为客户端提供了未解析的 json 包装数据

于 2012-12-24T13:13:26.173 回答