我正在开发一个映射工具,我正在使用 jQuery 从服务器下载 JSON 数据。jquery 的代码目前是:
$.getJSON("start.json", function(data) {
var items = [];
$.each(data, function(key, val) {
alert("data: " + key + "->" + val);
});
});
json 文件如下所示:
{
"type" : "obstacle",
"top" : 20,
"left" : 10,
"height": 50,
"width" : 70,
"tall" : 10
}
现在,“问题”是,可以清楚地看到,在这种格式下,json 只能包含一个对象。我如何构建我的文件(以及我的 jquery)以拥有多个对象?
提前致谢。