localStorage本地存储

2019-11-02  本文已影响0人  雩风二十八夜

对于接口获取的值集如需在不同页面使用且数据固定,无需多次调用接口,可存储在localStorage中:

//存储
var instituteSet = [];
localStorage.setItem("instituteSet", JSON.stringify(instituteSet)); //非对象不需要 JSON 序列化

//获取
var set = JSON.parse(localStorage.getItem("instituteSet"));

//删除
localStorage.removeItem("instituteSet");
上一篇 下一篇

猜你喜欢

热点阅读