我正在调用函数save并在此函数中我将$ .post发送到'upp.php':
function save(){
var oldItems = JSON.parse(localStorage.getItem('itemsArray')) || [];
var newItem = {};
var num = document.getElementById("num").value;
newItem[num] = {
"methv": document.getElementById("methv").value
,'q1': document.getElementById("q1").value,
'q2':document.getElementById("q2").value,
'q3':document.getElementById("q3").value,
'q4':document.getElementById("q4").value,
'comm':document.getElementById("comm").value
};
oldItems.push(newItem);
localStorage.setItem('itemsArray', JSON.stringify(oldItems));}
$.post('upp.php',{ items: JSON.stringify(oldItems) }, function(response) {
在我使用的upp.php中:
<?php
$array = json_decode($_POST['items'], True);
foreach ($array as $key=>$line) {
}
?>
但我得到了'items'的未定义索引
编辑:
发布回复后得到的内容
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css.css" media="all">
<meta name="viewport" content="initial-scale=1.0"/>
<script src="alan.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<title>Data Collection</title>
</head>
<body>
<!--Wrapper-->
<div id="wrap">
<!--Header-->
<div id="header">
<h1> Data Collection </h1>
</div>
<div id="menu">
<ul>
<li><a href="homepage.php">Home</a></li>
<li><a href="comment.php">Comments</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div><input type="text" id="data"/>
<div id="heading">
<h3> Welcome, alan </h3>
</div>
array(1) {
["items"]=>
string(167) "[{"1173627548":{"methv":"dont know","q1":"-","q2":"-","q3":"U","q4":"-","comm":""}},{"1173627548":{"methv":"dont know","q1":"-","q2":"-","q3":"U","q4":"-","comm":""}}]"
}
<div id="footer">
<h1> Footer </h1>
</div>
</div> <!--End of wrapper-->
</body>
</html>
是的,我得到了所有这些,但信息在那里,但它也显示其他信息
答案 0 :(得分:3)
在您的Ajax请求成功后,您window.location.href = "upp.php";
向同一网址发出GET请求。
由于它是GET请求,$_POST
为空,因此应该预期错误。
测试$_POST['items']
是否为数组键,并为这两个状态分支代码。
答案 1 :(得分:0)
您为什么要转换为JSON来发帖?为什么不只是序列化表单并使用jQuery发布,那么你就可以在PHP中使用该对象,而无需任何额外的工作..
<强> HTML ... 强>
<form id="myForm">
<input name="q1"></input>
<input name="q2"></input>
...
</form>
*的 JS ... * 强>
var formdata = $("#myForm").serialize();
$.ajax({
type:'POST',
url:'upp.php',
data:formData,
success:function(){ /* ... */ }
});
...的PHP
echo $_POST['q1'];
echo $_POST['q2'];