如何在 HTML5 localStorage/sessionStorage 中存储对象
我想将 JavaScript 对象存储在 HTML5
localStorage
中,但我的对象显然正在被转换为字符串。
我可以使用
localStorage
存储和检索原始 JavaScript 类型和数组,但对象似乎不起作用。他们应该吗?
这是我的代码:
var testObject = { 'one': 1, 'two': 2, 'three': 3 };
console.log('typeof testObject: ' + typeof testObject);
console.log('testObject properties:');
for (var prop in testObject) {
console.log(' ' + prop + ': ' + testObject[prop]);
}
// Put the object into storage
localStorage.setItem('testObject', testObject);
// Retrieve the object from storage
var retrievedObject = localStorage.getItem('testObject');
console.log('typeof retrievedObject: ' + typeof retrievedObject);
console.log('Value of retrievedObject: ' + retrievedObject);
控制台输出为
typeof testObject: object
testObject properties:
one: 1
two: 2
three: 3
typeof retrievedObject: string
Value of retrievedObject: [object Object]
在我看来,
setItem
方法在存储输入之前将其转换为字符串。
我在 Safari、Chrome 和 Firefox 中看到了这种行为,因此我认为这是我对 HTML5 Web Storage 规范的误解,而不是特定于浏览器的错误或限制。
我试图理解 2 通用基础设施 中描述的 结构化克隆 算法。我不完全理解它在说什么,但也许我的问题与我的对象的属性不可枚举(???)有关。
有没有简单的解决方法?
更新:W3C 最终改变了他们对结构化克隆规范的看法,并决定更改规范以匹配实现。请参阅 12111 – Storage 对象 getItem(key) 方法的规范与实现行为不匹配 。因此,这个问题不再 100% 有效,但答案仍然可能令人感兴趣。
查看 Apple 、 Mozilla 和 Mozilla again 文档,该功能似乎仅限于处理字符串键/值对。
一种解决方法是先 stringify 您的对象存储它,然后在检索它时对其进行解析:
var testObject = { 'one': 1, 'two': 2, 'three': 3 };
// Put the object into storage
localStorage.setItem('testObject', JSON.stringify(testObject));
// Retrieve the object from storage
var retrievedObject = localStorage.getItem('testObject');
console.log('retrievedObject: ', JSON.parse(retrievedObject));
对 变体 进行了小幅改进:
Storage.prototype.setObject = function(key, value) {
this.setItem(key, JSON.stringify(value));
}
Storage.prototype.getObject = function(key) {
var value = this.getItem(key);
return value && JSON.parse(value);
}
由于
短路求值
,如果
key
不在 Storage 中,
getObject()
将
立即
返回
null
。如果
value
为
""
(空字符串;
JSON.parse()
无法处理该字符串),它也不会抛出
SyntaxError
异常。
您可能会发现使用这些便捷方法扩展 Storage 对象很有用:
Storage.prototype.setObject = function(key, value) {
this.setItem(key, JSON.stringify(value));
}
Storage.prototype.getObject = function(key) {
return JSON.parse(this.getItem(key));
}
这样,即使 API 底层仅支持字符串,您也可以获得真正想要的功能。