点击收藏,如何向localStorage上的数组push数据

问题描述

1.点击收藏时候把当前商品缓存到本地,后台已经把商品数据放在了头部,我直接调用就行了。

我点击不同商品四次,没用追加到数组中,请问代码中怎么把后面点击的商品 追加到同一个数组中

https://img2.mukewang.com/5c160f7c000188bb08000208.jpg

        Wishlist:function () {            var array = [];
            let adrObj = {                'id': misslove.product.info.id,                'name':misslove.product.info.name,                'image':misslove.product.info.image,                'href':misslove.product.info.href,
            };            array[0]= adrObj;

            store.set(misslove.product.info.id,array); // 存储对象 - 自动调用 JSON.stringify

//

            var user = store.get(misslove.product.info.id,array); // 获取存储的对象 - 自动执行 JSON.parse

            console.log(user);
            store.forEach(function(key, array) {
                console.log( array)
            })  // 遍历所有存储


        },


慕姐4208626
浏览 1001回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5