0

我有一个 php 文件返回这个有效的 Json 数据,存储在一个名为“json”的 javascript 变量中。

[
"564654.56464",
"848492.25477",
"918821.54471"
]

我尝试在 javascript 中显示它:

var object = JSON.parse(json);
document.write(object. ..... );

我不知道在这里添加什么,因为我的 Json 不像 {"attribute":"value","attribute2":"value2"

4

2 回答 2

1

您可以将 PHP 文件与 json 标头一起编码。我想这应该可以解决问题!

header('Content-Type: application/json');
echo json_encode($array);
于 2013-04-11T11:40:00.420 回答
0

使用 document.write(object.toString());

于 2013-04-11T11:57:31.947 回答