The standard

localStorage.var = var;

Isn't working for me, for example:

localStorage.library_science1.owned = library_science1.owned;

Where library_science1 is a previously created Object with the 'owned' property. Can anyone please help?

没有正确的解决方案

其他提示

Local storage only handles Strings. Use JSON.stringify(library_science1) before you store, and JSON.parse(localStorage.library_science1) when you read from localStorage.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top