vue项目src-uitils-storage.js(功能是本地存储)

vue项目src-uitils-storage.js(功能是本地存储)
// 存储数据
export const setItem = (key, value) => {
  // 将数组、对象类型的数据转换为 JSON 格式字符串进行存储
  if (typeof value === ‘object‘) {
    value = JSON.stringify(value)
  }
  window.localStorage.setItem(key, value)
}

// 获取数据
export const getItem = key => {
  const data = window.localStorage.getItem(key)
  try {
    return JSON.parse(data)
  } catch (err) {
    return data
  }
}

// 删除数据
export const removeItem = key => {
  window.localStorage.removeItem(key)
}

 

vue项目src-uitils-storage.js(功能是本地存储)

上一篇:本地代码上传github做成可以使用的Maven依赖


下一篇:使用Jenkins实现.net程序自动化编译系列--安装篇