我是新來的jQuery和JSON。我有以下JSON結構。試圖迭代JSON結構使用jQuery
{
"address":{
"suburb":[
"HACKHAM WEST",
"HUNTFIELD HEIGHTS",
"ONKAPARINGA HILLS",
"m"
],
"state":"SA"
}
}
所以基本上以上是從這個迴應:
$.ajax({
type:'POST',
url: 'getAddress.php',
data:postCode='+postCode',
success: function(response) {
alert(response)
}
});
所以,我想要得到的是含有狀態的變量,幷包含郊區的數組。
你的'data'在你的'$ .ajax'中是錯誤的。它應該是'data:'postCode ='+ postCode,' –