0
点赞
收藏
分享

微信扫一扫

六、Vue之缓存

// 存入缓存,对象必须序列化才可以存入
localStorage.setItem('list', JSON.stringify(this.list));

//取出缓存 因为存入的时候用JSON序列化了,所以取要反序列化
var list = JSON.parse(localStorage.getItem('list'));


举报

相关推荐

0 条评论