这是我的代码:
// store item
localStorage.setItem("blog_key", "value I am storing");
// retrieve item
var data = localStorage.getItem("blog_key");
我试图为帖子制作数组列表,所以当有人点击帖子时,它会作为博客帖子
答案 0 :(得分:0)
不确定我是否有你的问题,但我想你想做这样的事情:
// retrieve the local storage value or "[]" and then parse it
var data = JSON.parse(localStorage.getItem("blog_key") || "[]");
// add new item to the array - might want to make sure that the array wont grow too big
data.push("something new");
// store item as string
localStorage.setItem("blog_key", JSON.stringify(data));
我可能错了,但那是我从你的问题中得到的。