对于接口获取的值集如需在不同页面使用且数据固定,无需多次调用接口,可存储在localStorage
中:
//存储
var instituteSet = [];
localStorage.setItem("instituteSet", JSON.stringify(instituteSet)); //非对象不需要 JSON 序列化
//获取
var set = JSON.parse(localStorage.getItem("instituteSet"));
//删除
localStorage.removeItem("instituteSet");