我在使用远程数据源完全填充Kendo TreeView时遇到了困难,尽管使用本地数据源它可以正常工作。
简而言之,下面的第一个示例使用本地数据源。这一切都很完美:
// local datasource, works perfectly
var local = new kendo.data.HierarchicalDataSource({
data: [
{
"DeviceGroupId": 1,
"DeviceGroupName": "Superdeluxe Devices",
"Devices": [
{
"Id": 1000,
"Name": "My First Device"
},
{
"Id": 1001,
"Name": "My Second Device"
}
]
}
],
schema: {
model: {
children: "Devices"
}
}
});
// initialize - this works!
$("#list-of-devices").kendoTreeView({
dataSource: local,
dataTextField: ["DeviceGroupName", "Name"],
loadOnDemand: false
});
同样,上面的示例工作得很好。现在,下面的第二个示例不会:它只填充treeview的根元素(“Superdeluxe Devices”)。它完全无视孩子们。
// remote datasource
var remote = new kendo.data.HierarchicalDataSource({
transport: {
read: {
url: "/api/devices/list", // <-- confirmed this works
dataType: "json",
contentType: "application/json"
},
schema: {
model: {
children: "Devices"
}
}
}
});
// initialize
$("#list-of-devices").kendoTreeView({
dataSource: remote, // the issue: only shows top level nodes
dataTextField: ["DeviceGroupName", "Name"],
loadOnDemand: false
});
因此,第二个示例中的问题是显示仅顶级节点,没有任何扩展选项。
我已经研究过以下内容:
loadOnDemand
选项now setting it by default to 'false' 总结一下,我似乎无法弄清楚为什么本地变体可以完美地工作 - 并且遥控器不显示孩子。有什么建议吗?
答案 0 :(得分:2)
问题出在您的远程DataSource定义中,您将schema.model
定义为传输的一部分而不是。它应该是:
var remote = new kendo.data.HierarchicalDataSource({
transport: {
read: {
url: "list.json",
dataType: "json",
contentType: "application/json"
}
},
schema: {
model: {
children: "Devices"
}
}
});
schema
与transport
处于同一级别。