- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想最终将 contactList 写入页面,但即使 console.log 显示 contactList 正确接收从 localStorage 推送的联系人,其长度仍为 1!当我尝试迭代 contactList 以写入页面时,它无法按预期工作,并且我看到值应该在的位置未定义。
var contactList = [];
window.onload = init;
function init(){
var data = window.localStorage.getItem("contacts");
if(data){
myData = JSON.parse(data);
console.log("This is local storage:\n");
console.log(myData);
console.log("This is contact list before I push local storage:\n");
console.log(contactList);
contactList.push(myData);
console.log("This is contact list after I push local storage:\n");
console.log(contactList);
var j = contactList.length;
console.log("This is the length of contact list:\n");
console.log(contactList.length);
}
}
这是我的控制台窗口的示例:
This is local storage:
form.js (line 12)[[[Object { firstname="hi", lastname="hi", number="hi"}], Object {firstname="hi", lastname="hi", number="hi"}], Object{ firstname="hi", lastname="hi", number="hi"}]form.js (line 13)
This is contact list before I push local storage:
form.js (line 14)[]form.js (line 15)
This is contact list after I push local storage:
form.js (line 17)[[[[Object { firstname="hi", lastname="hi", number="hi"}], Object { firstname="hi", lastname="hi", number="hi"}], Object { firstname="hi", > lastname="hi", number="hi"}]]form.js (line 18)
This is the length of contact list:
form.js (line 20)1
最佳答案
push
会将任何参数追加到数组末尾的新元素中。如果您添加一个字符串,它将添加该字符串。如果您添加一个数组,它将添加一个数组...作为最后一个元素。它不会展平生成的数组。另一方面,concat
将连接两个数组并返回一个新数组。但原始数组将保持不变。
关于javascript - Array.length 似乎不起作用; console.log 另有显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29551468/
我是一名优秀的程序员,十分优秀!