摘要: h5本地存储的操作 // 存储localStorage export const setStorage = (name, value) => { if (!name) return; if (typeof value !== 'string') { value = JSON.stringify(value) } window.localStorage.setItem(name, value); } 阅读全文
posted @ 2019-08-23 10:32 老北京(LBJ) 阅读(138) 评论(0) 推荐(0) 编辑