我正在使用带有 html 的剑道 ui 网格并调用经典 asp 我的剑道数据源如下所示。我可以使用 asp 列出数据,但是,我不知道如何在 asp 中进行更新。模型是如何传递到asp页面的?
var remoteDataSource = new kendo.data.DataSource(
{
transport:
{
read: {
type: "GET",
dataType: "json",
url: "defaultAction.asp?Action=List"
},
update: {
url: "defaultAction.asp?Action=Update",
dataType: "json",
type: "POST"
},
parameterMap: function(options, operation) {
if (operation !== "read" && options.models) {
return {models: kendo.stringify(options.models)};
}
}
},
batch: true,
pageSize: 4,
schema: {
model: {
id: "ID",
fields: {
ID: { editable: false, nullable: true },
Email: { type: "string" },
}
}
}
})