gpt4 book ai didi

javascript - 发送超过 2000 个字符的 JSON 数据

转载 作者:行者123 更新时间:2023-12-03 04:28:19 24 4
gpt4 key购买 nike

是否可以发送超过 2000 个字符的 JSON 数据?我的 url 长度是 5260,并且收到错误 GET 404()。有什么解决方案可以以 json 形式发送此数据吗?

 update: {
url: ServiceBase + "Coating/updateTestResult",
dataType: "json",
complete: function (jqXHR, textStatus) {
if (jqXHR.status == "200") {
showNotification("Alert", "Records updated.", "upload-success");
} else {
showNotification("Error", "Couldn't update records.", "info");
}
}
}

if (operation === "update") {
$.each(dataSource._data, function () {
var row = $("#grid tbody").find("tr[data-uid='" + this.uid + "']");
if (row.hasClass("blur")) {
row.removeClass("blur");
}
this.dirty = false;
});

return { models: kendo.stringify(options.models) };
}

最佳答案

尝试执行 POST 请求。最大限度。 URL 长度为 2000 个字符 ( SO answer ),这就是您收到错误 404 的原因。

关于javascript - 发送超过 2000 个字符的 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43604067/

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