0
我的PHP腳本正在返回我在AJAX調用中收到的JSON對象。在AJAX中使用由PHP返回的Json
$arr[0] = $resp;
$arr[1] = $e;
return json_encode($arr);
現在在我的AJAX調用,我試圖讓價值,但我得到的是"/"
或"'"
。
我正在做這個AJAX。
dd = JSON.stringify(x.responseText); //this is the response from PHP which is correct I have verified.
alert(dd[0]); //supposed to output $arr[0] but it doesn't
我在這裏做錯了什麼?
'console.log(dd)' –
@u_mulder問題不在於alert或console.log或打印問題,它關於獲取正確的數據。 –
Console.log,看看你在dd中有什麼。 'JSON.stringify'順便說一句json字符串。也許你需要'JSON.parse'? –