作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有来自 Google map 的 JSON 响应,已保存到 .json 文件中。这是搜索附近的学校。
我只想提取学校的名称和位置,并将其保存到 elemSchoolsArr
变量供以后使用。
我不知道为什么下面的代码没有循环遍历 json 响应,检查 elemSchoolsObj
只显示一个对象,而不是 10 个,我想将其推送到 elemSchoolsArr
之后。
var elemSchoolsArr = [];
var elemSchoolsObj = {};
$.getJSON('elementary-schools.json', function(data){
for (var i = 0; i < 10; i++) {
elemSchoolsObj.title = data.results[i].name;
elemSchoolsObj.location = data.results[i].geometry.location;
}
});
elemSchoolsArr.push(elemSchoolsObj);
最佳答案
您只需将对象插入循环内的数组中,这样每个对象都会被插入,而不是只插入一个。显然,此代码片段实际上不会运行,因为我们没有在此处获取您的 JSON。
var elemSchoolsArr = [];
$.getJSON('elementary-schools.json', function(data){
for (var i = 0; i < 10; i++) {
var elemSchoolsObj = {};
elemSchoolsObj.title = data.results[i].name;
elemSchoolsObj.location = data.results[i].geometry.location;
elemSchoolsArr.push(elemSchoolsObj);
}
});
这是一个功能示例...
var array = ["a", "b", "c", "d", "e"];
var first_try = [];
var second_try = [];
for( var i = 0; i < array.length; i++ ){
// we define our object in the loop but don't add it to the array
var obj = {
item: array[i]
};
}
// we push one object in to the array
first_try.push( obj );
// we get one object in the array
console.log( first_try );
for( var i = 0; i < array.length; i++ ){
// we define our object in the loop
var obj = {
item: array[i]
};
// we push each object we define in the loop in to the array
second_try.push( obj );
}
// we get all the objects in the array
console.log( second_try );
关于javascript - 循环遍历 Json 并附加到对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45472939/
我是一名优秀的程序员,十分优秀!