作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将某些 JSON 值保存到 JS 数组中。
var count = Object.keys(item.programme).length; // item is JSON file, count is 23
for (i=0; i<count; i++) {
var title = item.programme[i].title.de;
console.log(typeof title); //string
console.log(title); // desired values, title when i
listData = [];
listData[i] = title;
}
console.log(listData); // [undefined, undefined,.....,title when i =22]
我想从标题变量中获取值数组。我仅在数组的最后一个字段中获得所需的值,其余为未定义
。
最佳答案
这有点微不足道。您在每次迭代中定义listData
。将其移到循环之外:
var listData = [];
for (var i=0; i<count; i++) {
...
listData[i] = title;
}
关于javascript - 如何将值从 JSON 对象移动到 JS 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27474547/
我是一名优秀的程序员,十分优秀!