gpt4 book ai didi

javascript - 在 jQuery 中将 JSON 数据传递给 .getJSON?

转载 作者:可可西里 更新时间:2023-11-01 01:56:44 24 4
gpt4 key购买 nike

我正在尝试将 JSON 对象传递给 .getJSON,但我一直收到错误的请求错误。这就是我正在尝试的:

var data = {
"SomeID": "18",
"Utc": null,
"Flags": "324"
};

$.getJSON("https://somewhere.com/AllGet?callback=?", JSON.stringify(data), function (result) {
alert(result);
});

目前为了让它工作,我必须这样做,但我不喜欢我必须手动构造查询字符串的方式:

$.getJSON("https://somewhere.com/AllGet?SomeID=18&Utc=&Flags=324&callback=?", null, function (result) {
alert(result);
});

有人知道如何通过传入的 JSON 对象使请求更容易吗?如果有任何帮助或建议,我将不胜感激。

最佳答案

根据网站,这是有效的:

$.getJSON("test.js", { name: "John", time: "2pm" }, function(json) {
alert("JSON Data: " + json.users[3].name);
});

所以尝试:

var data = {
SomeID: "18",
Utc: null,
Flags: "324"
};

$.getJSON("https://somewhere.com/AllGet?callback=?", data, function (result) {
alert(result);
});

编辑:http://api.jquery.com/jQuery.getJSON/

关于javascript - 在 jQuery 中将 JSON 数据传递给 .getJSON?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8232197/

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