JavaScript 使用localStorage
示例
localStorage对象提供字符串的持久键值存储(但不是永久的,请参见下面的限制)。任何更改都可以立即在同一来源的所有其他窗口/框架中看到。除非用户清除保存的数据或配置到期限制,否则存储的值将无限期持久。localStorage使用类似于映射的界面来获取和设置值。
localStorage.setItem('name', "John Smith");console.log(localStorage.getItem('name')); // "John Smith"
localStorage.removeItem('name');
console.log(localStorage.getItem('name')); // 空值
如果要存储简单的结构化数据,则可以使用JSON在字符串之间进行序列化以进行存储。
var players = [{name: "Tyler", score: 22}, {name: "Ryan", score: 41}];localStorage.setItem('players', JSON.stringify(players));
console.log(JSON.parse(localStorage.getItem('players')));
// [ Object { name: "Tyler", score: 22 }, Object { name: "Ryan", score: 41 } ]
浏览器中的localStorage限制
移动浏览器:
浏览器 | 谷歌浏览器 | Android浏览器 | 火狐浏览器 | iOS Safari |
---|---|---|---|---|
版 | 40 | 4.3 | 34 | 6-8 |
可用空间 | 10MB | 2MB | 10MB | 5MB |
桌面浏览器:
浏览器 | 谷歌浏览器 | 歌剧 | 火狐浏览器 | 苹果浏览器 | IE浏览器 |
---|---|---|---|---|---|
版 | 40 | 27 | 34 | 6-8 | 9-11 |
可用空间 | 10MB | 10MB | 10MB | 5MB | 10MB |
以上是 JavaScript 使用localStorage 的全部内容, 来源链接: utcz.com/z/347057.html