Pitfalls of local storage localstorage

localStorage is stored in the form of a string
, so when using setItem, even though the saved value is an object or Boolean,
when getItem obtains the value, it is returned in the form of a string.

Guess you like

Origin blog.csdn.net/weixin_44786330/article/details/129366245