0
對象屬性的標準保存特別是在localStorage的
localStorage.var = var;
是不是爲我工作,例如:
localStorage.library_science1.owned = library_science1.owned;
哪裏library_science1與「擁有」產權以前創建的對象。任何人都可以幫忙嗎?
對象屬性的標準保存特別是在localStorage的
localStorage.var = var;
是不是爲我工作,例如:
localStorage.library_science1.owned = library_science1.owned;
哪裏library_science1與「擁有」產權以前創建的對象。任何人都可以幫忙嗎?
本地存儲只處理字符串。存儲前使用JSON.stringify(library_science1)
,當您從localStorage讀取時使用JSON.parse(localStorage.library_science1)
。
請記住'localStorage'只存儲字符串。請參閱[在HTML5 localStorage中存儲對象](http://stackoverflow.com/q/2010892/218196)。 –