gpt4 book ai didi

php - 使用 Ajax Post 通过 javascript 将 Json 传递给 php 不工作

转载 作者:行者123 更新时间:2023-11-29 20:09:57 25 4
gpt4 key购买 nike

您好,我正在尝试使用 Javascript 通过 Ajax 将 Json 发送到 PHP。当我在 Firebug 上查看数据时,index.html 正确发送了数据。它显示具有正确数据的 Json 类型。但是,我似乎无法在 php 上读取 JSON。我无法使用 $_POST 访问它。我尝试使用 $_POST['name'] 并且没有响应。当我尝试使用 $_POST 时,响应是数组。你能帮帮我吗?

这是我的 javascript 代码。

<html>
<head>
<script type="text/javascript">
//Create Http request depending on browser
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}

xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;}
}

// Function to create
var url = "control.php";
xmlhttp.open("POST",url,true);
xmlhttp.setRequestHeader("Content-Type", "application/json; charset=utf-8");
var data=JSON.stringify({"name":"John", "time":"2pm"});
xmlhttp.send(data);
}
</script>
</head>
<body>
<h2>AJAX</h2>
<button type="button" onclick="loadXMLDoc()">Request data</button>
<div id="myDiv"></div>
</body>
</html>

这是我的php代码

<?php
include_once('JSON.php');
$json = new Services_JSON();
$value = $json->decode($_POST['name']);
echo $value;
?>

几天来一直致力于此,非常感谢您提供的任何帮助。谢谢!

最佳答案

这里是:

print_r($GLOBALS['HTTP_RAW_POST_DATA']);

关于php - 使用 Ajax Post 通过 javascript 将 Json 传递给 php 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10425776/

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