我一直在研究一个包含很多JS变量的大型程序,这些变量在浏览器中运行。什么是大量保存数百个变量然后按下按钮大量加载它们的最佳方法?我想要有一个函数循环并循环遍历每个变量,但我不太清楚如何做到这一点。
有人可以帮我这个吗?
答案 0 :(得分:0)
为何选择cookies?每次用户打开任何页面时,它们都会被发送回您的服务器。我使用localStorage(CanIUse)和JSON.stringify(CanIUse)将包含所有属性的对象保存到可读实体中。
var propertiesContainer = {
"prop_one": 1,
"prop_two": 2,
"prop_three": 3
};
localStorage.setItem("properties", JSON.stringify(propertiesContainer ));
毕竟你可以使用getItem读取属性:
console.log(localStorage.getItem("properties"));