定义 Storage 对象,对象有get(取值), set(设置), add(加入新值)三个方法

const Storage =  {}

Storage.get = function (name) {
    return JSON.parse(localStorage.getItem(name))
}

Storage.set = function (name, val) {
    localStorage.setItem(name, JSON.stringify(val))
}

Storage.add = function (name, addVal) {
    let oldVal = Storage.get(name)
    let newVal = oldVal.concat(addVal)
    Storage.set(name, newVal)
}

export default Storage

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-30
  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
猜你喜欢
  • 2021-08-17
  • 2022-12-23
  • 2021-11-24
  • 2021-11-15
  • 2022-12-23
  • 2021-07-26
  • 2022-12-23
相关资源
相似解决方案