为什么控制台打印数组中的对象而不是对象

这个问题在这里已经有了答案:

  • 在HTML5 localStorage中存储对象25个答案

  • 您必须使用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

    下一篇: Storing prompt response in localStorage and retrieving