localStorage用法

Posted wanlibingfeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了localStorage用法相关的知识,希望对你有一定的参考价值。

引用:https://www.cnblogs.com/st-leslie/p/5617130.html

const  STORAGE_KEY = ‘todos-vuejs‘;
export default{
  fetch(){
    return JSON.parse(window.localStorage.getItem(STORAGE_KEY) || ‘[]‘);
  },
  save(items){
    window.localStorage.setItem(STORAGE_KEY,JSON.stringify(items));
  }
}

 

以上是关于localStorage用法的主要内容,如果未能解决你的问题,请参考以下文章

localstorage,cookie等用法

localStorage的用法

localStorage用法总结

localStorage 和 sessionStorage 的用法

localStorage用法总结

localStorage用法小总结