在我的数据网格中,我使用龙卷风服务器从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
chrome dump:
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
答案 0 :(得分:2)
尝试设置数据源的schema:
schema: {
total: "total",
data: "rows"
}
答案 1 :(得分:0)
问题在于我向客户提供了未解析的json
在json.loads()中包装数据可以解决问题