gpt4 book ai didi

php - 通过 JQuery ajax.post 向 PHP 提交 JSON 数据

转载 作者:可可西里 更新时间:2023-11-01 13:04:54 25 4
gpt4 key购买 nike

我正在使用 POST 通过 AJAX 将数据提交到 php 文件。只需提交字符串就可以正常工作,但现在我想用 JSON 提交我的 JS 对象并在 PHP 端对其进行解码。

在控制台中我可以看到,我的数据已正确提交,但在 PHP 端 json_decode 返回 NULL。

我尝试了以下方法:

this.getAbsence = function()
{
alert(JSON.stringify(this));
jQuery.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "ajax/selectSingle.php?m=getAbsence",
data: JSON.stringify(this),
success : function(data){
alert(data);
}
});
}

PHP:

echo $_POST['data'];
echo json_decode($_POST['data']);
echo var_dump(json_decode($_POST['data']));

还有:

this.getAbsence = function()
{
alert(JSON.stringify(this));
jQuery.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "ajax/selectSingle.php?m=getAbsence",
data: {'Absence' : JSON.stringify(this)},
success : function(data){
alert(data);
}
});
}

PHP:

echo $_POST['Absence'];
echo json_decode($_POST['Absence']);
echo var_dump(json_decode($_POST['Absence']));

警报只是为了检查一切是否正常......

是的,通常的字符串已正确回显:-)

最佳答案

你在第一个代码中出错的地方是你必须使用这个:

var_dump(json_decode(file_get_contents("php://input"))); //and not $_POST['data']

引用自 PHP 手册

php://input is a read-only stream that allows you to read raw data from the request body.

由于在您的情况下,您在正文中提交 JSON,因此您必须从此流中读取它。 $_POST['field_name'] 的常规方法不起作用,因为帖子正文不是 URL 编码格式。

在第二部分,你一定用过这个:

contentType: "application/json; charset=utf-8",
url: "ajax/selectSingle.php?m=getAbsence",
data: JSON.stringify({'Absence' : JSON.stringify(this)}),

更新:

当请求的内容类型为 application/json 时,PHP 不会解析请求并在 $_POST 中为您提供 JSON 对象,您必须自己从原始数据中解析HTTP 正文。使用 file_get_contents("php://input"); 检索 JSON 字符串。

如果你必须使用 $_POST你会做到:

data: {"data":JSON.stringify({'Absence' : JSON.stringify(this)})},

然后在 PHP 中做:

$json = json_decode($_POST['data']);

关于php - 通过 JQuery ajax.post 向 PHP 提交 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10947483/

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