本地存储模块storage.js

本地存储模块

// 本地存储模块
// 获取状态值
export const getItem = name => {
  const data = window.localStorage.getItem(name)
  //data可能不是JSON字符串
  try {
    return JSON.parse(data)
  } catch (error) {
    return data
  }
}

// 改变状态值
export const setItem = (name,value) => {
  if(typeof(value)===‘object‘) {
    value = JSON.stringify(value)
  } 
  window.localStorage.setItem(name,value)
}

//删除状态值
export const removeItem = name => {
  window.localStorage.removeItem(name)
}

本地存储模块storage.js

上一篇:安裝zabbix,缺少依赖 libmysqlclient.so.18(64bit)的解决办法


下一篇:微信小程序之组件的集合(五)