我创建了一个应用程序,在json文件中搜索条形图并显示结果然后我点击每个结果并尝试使用本地存储区将它们添加到收藏页面有人可以帮忙吗?
//添加收藏夹
var barId = $('.thumbnail').attr("id");
$('favoritesbtn').on('click', function() {
var bars = {
id: $('.id').attr("id"),
name: $('#name').text(),
location: $('#location').text(),
description: $('#description').text(),
image: $('#image').attr('src'),
};
localStorage.setItem('bars-' + Id,
JSON.stringify(bars));
var retrievedObject = JSON.parse(localStorage.getItem('bars-' + id));
console.log('retrievedObject: ', retrievedObject);
});