我正在使用 Kendo 可编辑 TreeList(带角度)。我正在尝试使用“传输”功能与我的远程服务进行通信。虽然读取工作正常(即我得到 JSON 数据并能够正确呈现它),但更新功能无法正常工作。具体来说,options.models 保持“未定义”,因此没有发回任何内容。
我在 DOJO 的 kendo 网站上运行了 angular treelist 示例,结果发现那里的 options.model 也是未定义的。(您可以通过编辑此处的示例来运行它:http: //demos.telerik.com/kendo-ui/treelist/angular)
下面是我正在使用的代码(类似于上面链接中 Telerik 示例中提供的代码)
有人可以告诉我我在这里可能做错了什么吗?
非常感谢!
vm.treelistOptions = {
dataSource: {
transport: {
read:{
url: myURL,
dataType:"json"
},
update: {
url: myURL + "update",
dataType: "json",
type: "post"
},
parameterMap: function(options, operation) {
if (operation == "read") {
console.log("Transport READ works");
}
if (operation == "update"){
console.log("Transport UPDATE works");
console.log(options.models);
}
if (operation !== "read" && options.models) {
console.log("reached inside the IF in parammap");
return {models: JSON.stringify(options.models)};
}
}
},
schema: {
model: {
id: "stId",
parentId: "stLink",
fields: {
stId: {type: "number", editable: false, nullable: false},
stLink: {nullable: true, type: "number"},
stName: {validation: {required: true}},
v: {type: "number", editable:true}
}
}
}
},
sortable:true,
editable:true,
columns: [
{ field: "stName", title: "st", width: "150px" },
{ field: "v", title: "Ex v", width: "150px" },
{ command: ["edit"] }
]
}