gpt4 book ai didi

jsgrid 更新后返回空行

转载 作者:行者123 更新时间:2023-12-01 05:52:46 25 4
gpt4 key购买 nike

在jsgrid中通过ajax提供更新后,该行返回空白

controller: {
loadData: function(filter) {
var data = $.Deferred();
$.ajax({
type: "GET",
contentType: "application/json; charset=utf-8",
url: "/app/Play/",
dataType: "json"
}).done(function(response) {
data.resolve(response);
});
return data.promise();
},
updateItem: function(item) {
return $.ajax({
type: "POST",
url: "/app/Play/change.php",
data: item,
});
},
}

在返回的url更新中: /app/Play/change.php
我在一个普通的 json 中返回更新的记录数据,与加载中使用的初始 json 相同

最佳答案

解决:

controller: {
loadData: function(filter) {
var data = $.Deferred();
$.ajax({
type: "GET",
contentType: "application/json; charset=utf-8",
url: "/app/Jogos/app/",
data: filter, // <--Insert line, this is a problem
dataType: "json"
}).done(function(response) {
data.resolve(response);
});
return data.promise();
},
updateItem: function(item) {
return $.ajax({
type: "POST",
url: "/app/Jogos/app/change.php",
data: item
});
},
},

关于jsgrid 更新后返回空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52396792/

25 4 0
文章推荐: Python csv写入列表
文章推荐: java - 从 1.5 上的客户端调用 1.6 上的 EJB
文章推荐: python - 字典在迭代期间改变大小
文章推荐: java - 使用 Groovy 使用 JSON 服务返回 List