gpt4 book ai didi

jquery - 在Kendoui中获取对话框的数据并将其发送到服务器?

转载 作者:行者123 更新时间:2023-12-01 01:15:33 24 4
gpt4 key购买 nike

如何将对话框(kendogrid中弹出编辑)的信息发送到服务器?

我已经写了代码,但我不知道我应该在数据部分写什么。

jsfiddle code

      save: function (e) {

$.ajax({

url: 'api/apdevice',
type: 'POST',
datatype: 'application/json',
data: {
//I don't know what I should write in the data part.
},
success: function (data) {
alert('yes ' + data);
},

error: function (data) {
alert('no ' + data);
}

});
}

谢谢

最佳答案

在 Kendo UI Grid 中,save 接收数据作为 model 中的参数。

所以你的代码应该是这样的:

save: function (e) {
$.ajax({
url: 'api/apdevice',
type: 'POST',
datatype: 'application/json',
data: e.model,
success: function (data) {
alert('yes ' + data);
},
error: function (data) {
alert('no ' + data);
}
});
}

关于jquery - 在Kendoui中获取对话框的数据并将其发送到服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17956701/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com