我需要從PHP返回一個數組,並在成功打印時說它未定義。我怎樣才能獲得數組的價值?在jquery中返回數組值
$.ajax({
type: "POST",
url: "test2.php",
data : {
price : [101, 69, 51],
id : [1, 2, 3]
},
success: function(response) {
alert response[0];
}
})
// PHP
echo $_REQUEST["price"];
是什麼反應? – 2012-04-08 20:03:08
'echo $ _REQUEST [「price」];'可能會導致輸出'Array',因爲這是PHP中數組的默認字符串表示形式。 – 2012-04-08 20:07:09