标签: javascript html5 local-storage
这一行
item = JSON.parse(localStorage["item"]);
在我的控制台中显示Uncaught SyntaxError: Unexpected end of input时出错了?我该如何解决这个问题?我知道空字符串不是有效的json。
Uncaught SyntaxError: Unexpected end of input
答案 0 :(得分:1)
if(localStorage["item"]){ item = JSON.parse(localStorage["item"]); }