将对象存储在HTML5 localStorage中

我想在HTML5 localStorage存储JavaScript对象,但我的对象显然正在转换为字符串。

我可以使用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存储规范的误解,而不是浏览器特定的错误或限制。

我试图理解http://www.w3.org/TR/html5/infrastructure.html中描述的结构化克隆算法。 我不完全明白它的意思,但也许我的问题与我的对象的属性不可枚举(???)

有一个简单的解决方法吗?


更新:W3C最终改变了他们对结构化克隆规范的看法,并决定改变规范以匹配实现。 请参阅https://www.w3.org/Bugs/Public/show_bug.cgi?id=12111。 所以这个问题不再100%有效,但答案仍然可能是有趣的。


查看Apple,Mozilla和Microsoft文档,该功能似乎仅限于处理字符串键/值对。

解决方法是在存储对象之前对其进行字符串化,稍后在检索时解析它。

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不在存储中, getObject()将立即返回null 。 如果value"" (空字符串; JSON.parse()不能处理它),它也不会抛出SyntaxError异常。


使用这些方便的方法扩展存储对象可能会很有用:

Storage.prototype.setObject = function(key, value) {
    this.setItem(key, JSON.stringify(value));
}

Storage.prototype.getObject = function(key) {
    return JSON.parse(this.getItem(key));
}

这样你就可以获得你真正想要的功能,即使在API下面只支持字符串。

链接地址: http://www.djcxy.com/p/727.html

上一篇: Storing Objects in HTML5 localStorage

下一篇: Initialization of an ArrayList in one line