gpt4 book ai didi

javascript - jQuery ajax post请求不发送数据

转载 作者:行者123 更新时间:2023-12-03 02:32:22 25 4
gpt4 key购买 nike

我使用 jQuery ajax 向我的 php 代码发送 post 请求,但它没有发送数据。

var uploadData = {
'email': email
};
$.ajax({
url: './upload.php',
method: 'POST',
dataType: 'json',
data: uploadData,
contentType: "application/json; charset=utf-8",
success: function(data, status, xhr) {
console.log(xhr.responseText);
return(true);
},
error: function(data, status, xhr) {
console.log(xhr.responseText);
return(false);
}
});

我尝试添加 dataType:'json',contentType: "application/json; charset=utf-8", 尝试更改 post 来获取,但是没有任何改变。

enter image description here

最佳答案

我认为事情是这样的:

$.ajax({
url: './upload.php',
type: 'POST',
dataType: 'json',
data: {
'email': 'test@gmail.com'
},
success: function(data) {
return data;
}
});

该代码对我有用。

关于javascript - jQuery ajax post请求不发送数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48681384/

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