我是 jquery 和 JSON 的新手。我有以下 JSON 结构。
{
"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)
}
});
所以,我想要得到的是一个包含状态的变量和一个包含郊区的数组。