我想将一个数组从 javascript 传递到 php。最简单的方法是什么?
javascript中的数组喜欢:
var resultArray = [
{"id":"1", "description":"aaa", "name":"zzz", "titel":"mmm"},
{"id":"2", "description":"bbb", "name":"yyy", "titel":"nnn"},
{"id":"3", "description":"ccc", "name":"xxx", "titel":"lll"},
{"id":"4", "description":"ddd", "name":"www", "titel":"qqq"},
{"id":"5", "description":"eee", "name":"vvv", "titel":"rrr"}
]
windows.location.href = "searchResults.php?resultArray=" + JSON.stringify(resultArray);
在我使用的 php 中:
$resultArray = json_decode($_GET['resultArray']);
echo $resultArray[0]['id']; // should be "1", but show nothing
提前感谢您的每一个回复!