我想使用javascript(不是jquery)从php服务器读取json
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
json = xmlhttp.responseText;
JSON.parse(json, function (key, val) {
alert(key + '-'+ val);
});
}
}
在php文件中我做
$data = array();
$data['id'] = '1';
$data['name'] = '2';
print json_encode($data);
但输出是
id-1
name-2
-[object Object] // why??
怎么解决 谢谢