想知道你是否可以帮助我,我一直在努力争取让我的其他JSON数据在剑道网格中正确显示几个小时,并且刚刚解决了这个问题。由于我的JSON上有额外的节点
$(function() {
var grid = $("#grid").kendoGrid({
dataSource: {
data: {
"ttPortalCommunicationResult": [{
"UniqueID": 7,
"DocumentTitle": "Expense Contribution Scheme Guide",
"ActivationDate": "2012-05-22",
"DeactivationDate": "2020-05-12",
"CategoryDesc": "Operational news"
}],
},
pageSize: 10,
schema: {
data: "ttPortalCommunicationResult"
}
}
}).data("kendoGrid");
});
我收到错误Cannot read property 'slice' of undefined
。
我的问题是如何才能使用" ttPortalCommunicationResult"包含附加节点的JSON数据上的节点?
我会假设剑道会理解如何遍历该节点。解释为什么它也不会很好。
答案 0 :(得分:0)
使用dataSource架构解析方法
schema: {
parse : function(data) {
return data.ttPortalCommunicationResult;
}
}