storage-封装

2021/12/2 23:37:12

本文主要是介绍storage-封装,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

/**  * localStorage and sessionStorage basic operation  */ const ls = localStorage; const ss = sessionStorage; const db = {   ls: {     get(key) {       try {         return JSON.parse(ls.getItem(key));       } catch (err) {         return ls.getItem(key);       }     },     set(key, value) {       ls.setItem(key, JSON.stringify(value));     },     remove(key) {       ls.removeItem(key);     },     clear() {       ls.clear();     }   },   ss: {     get(key) {       try {         return JSON.parse(ss.getItem(key));       } catch (err) {         return ss.getItem(key);       }     },     set(key, value) {       ss.setItem(key, JSON.stringify(value));     },     remove(key) {       ss.removeItem(key);     },     clear() {       ss.clear();     }   } }; export default db;

这篇关于storage-封装的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程