码迷,mamicode.com
首页 > 其他好文 > 详细

封装locaostorage

时间:2018-07-14 14:51:38      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:style   get   cal   nbsp   aos   bsp   封装   storage   null   

 1 const ls = localStorage
 2 
 3 export default {
 4   setItem(name, value) {
 5     ls.setItem(name, JSON.stringify(value))
 6   },
 7   getItem(name) {
 8     try {
 9       return JSON.parse(ls.getItem(name))
10     } catch (e) {
11       return null
12     }
13   },
14   removeItem(name) {
15     ls.removeItem(name)
16   }
17 }

 

封装locaostorage

标签:style   get   cal   nbsp   aos   bsp   封装   storage   null   

原文地址:https://www.cnblogs.com/yangguoe/p/9309358.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!