gpt4 book ai didi

javascript - jQuery AJAX POST 发送变量

转载 作者:行者123 更新时间:2023-11-30 10:14:41 25 4
gpt4 key购买 nike

我有以下代码:

  var result = confirm("You want to Subscribe to our Newsletter?");
var emailAddress = $("#subscribeEmail").val();

if (result == true) {

$.ajax({
type: 'POST',
url: '/php/subscribeNewsletter.php',
data: '{"email": "' + emailAddress + '"}',
complete: function(r){
alert(r.responseText);
}

});


}

我认为问题在于: 数据:'{"email": "' + emailAddress + '"}',

我在服务器端收到一个空的 $_POST 数组。

最佳答案

传递对象文字,而不是字符串:

data: {email: emailAddress },

jQuery 会将对象转换为 URL 编码的键/值对,这些键/值对将在 PHP 端的 $_POST 数组中获取。

您当前的代码实际上是发送一个 JSON 字符串作为原始 POST 数据。 jQuery 看到数据类型是字符串,因此它不做任何处理,因此您必须在 PHP 端访问原始 POST 数据并进行 JSON 解码才能获取它。

关于javascript - jQuery AJAX POST 发送变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24507468/

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