gpt4 book ai didi

jQuery:使用 $.ajax POST 提交带有两个变量的链接?

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

我有以下三个变量:

var action,
pubMode,
token;

所有三个值都应通过 POST 和 ajax 提交。由于 POST 不接受 url,我完全不知道该怎么做?

function ajaxPost(action, pubMode, token) {

$.ajax({
url: ??,
dataType: "text json",
type: "POST",
success: function(jsonObject,status) {

console.log("function() ajaxPost : " + status);

}
});
}

你们能帮帮我吗?谢谢

最佳答案

$.ajax有一个 data 选项,您可以在其中将变量作为对象或查询字符串传递。

POST 与 GET 不同,后者将变量附加到 URL 上。使用您想要发布的 URL 作为 url 并使用 data 发送变量。

$.ajax({
url: 'http://your/url/here',
dataType: "text json",
type: "POST",
data: {action: action, pubMode: pubMode, token: token},
success: function(jsonObject,status) {

console.log("function() ajaxPost : " + status);

}
});

关于jQuery:使用 $.ajax POST 提交带有两个变量的链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7179300/

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