我使用Ajax将我的服务器端代码PHP中的一些数据发回给我的客户端,这就是它的完成方式
//server side
$json='{
"payout_history":"0",
"round_shares":"1816",
"workers":
{
"jbo.5970":
{
"alive":"1",
"hashrate":"1253"
},
"jbo.5970cpu":
{
"alive":"1",
"hashrate":"21"
},
"jbo.5970-2":
{
"alive":"1",
"hashrate":"1062"
}
}
}';
echo json_encode($json);
这是我基于firebug获得的JSON响应
"{\r\n\"payout_history\":\"0\",\r\n\"round_shares\":\"1816\",\r\n\"workers\":\r\n
{\r\n \"jbo.5970\":\r\n {\r\n \"alive\":\"1\",\r\n \"hashrate
\":\"1253\"\r\n },\r\n \"jbo.5970cpu\":\r\n {\r\n \"alive\":\"1
\",\r\n \"hashrate\":\"21\"\r\n },\r\n \"jbo.5970-2\":\r\n
{\r\n \"alive\":\"1\",\r\n \"hashrate\":\"1062\"\r\n }\r\n }\r\n}"
在客户端,我试图使用$ .each函数迭代每个worker来获取“jbo.5970”,“alive”,“hashrate”。我该怎么做呢
我尝试过但没有任何反应,调试器中没有错误
//client side
$.ajax({
type: "POST",
url: "display.php",
data:{faculties:"arts"},
dataType: "json", //expect json to be returned
success: function(response){
$.each(response,function(i,item)
{
alert(response["workers"]);
});
}
});
答案 0 :(得分:2)
response.workers
是数组,不是response
。
$.each(response.workers,function(i,item)
{
console.log(item);
});
您已经在服务器端拥有json字符串,因此您无需对其进行编码。
使用echo $json;
代替echo json_encode($json);
。