为什么控制台打印数组中的对象而不是对象
这个问题在这里已经有了答案:
您必须使用JSON stringify
存储对象,然后使用parse
将其转换回JSON对象。
localStorage.setItem('allItems', JSON.stringify(allItems));
var storageItems = JSON.parse(localStorage.getItem('allItems'));
console.log(storageItems.Items[1].Name);
链接地址: http://www.djcxy.com/p/27947.html
上一篇: Why does the console print an object in an array but not an object