我有几个localStorage
Key,例如 Cart、Viewed 和 Trash。
问题有两个方面:
1) 我如何以最高效的方式遍历 localStorage 中的项目 ID,如果 ID 已经存在,则将类或数据属性添加到匹配的 DOM 元素。
Keys
2)从 3 个本地存储(垃圾箱、购物车、已查看)中创建最后 20 个项目的单独列表的最佳方法是什么?从性能的角度来看,最好在与我的问题的 pt1 相同的 Loop 函数中执行此操作(即还测试 ID 是否存在,如果为真则添加一个类)?
这就是我所拥有的:
HTML
<article data-id="548" data-date="Mon Dec 19 09:12:57">
<h1><a href="#">Title</a></h1> // section // footer <a href="#" data-context="trash">trash</a>
</article>
jQuery
$tools.on("click", "a", function(e){
var storeId = $(this).attr('data-context');
var selector = $(this).closest('article');
var dataId = selector.attr('data-id');
var pubDate = selector.attr('data-date');
var postUrl = selector.find('a', 'h1').attr('href');
var postTitle = selector.find('h1').text();
var $removable = $container.find( selector );
setLocalStorage(storeId, dataId, postUrl, postTitle, pubDate);
if (storeId == "Trash") {
$container.isotope( 'remove', $removable );
};
e.preventDefault();
});
设置器函数。
变量通过data-context="Trash"
(key)和data-id="001"
(id)等传递并存储在相关的Key中。
function setLocalStorage(itemKey, dataId, postUrl, postTitle, postPub) {
var ItemKey = itemKey;
var timeStamp = new Date();
var json = JSON.parse(localStorage.getItem(ItemKey));
if(json == null)
json = [];
json.push({id:dataId,title:postTitle,url:postUrl,postPub:postPub,dataTimeStamp:timeStamp});
// save the result array
sessionStorage.setItem(ItemKey, JSON.stringify(json))
// Notify user item added to Cart
updateNotifications(ItemKey, json);
}
localStorage 最终是这样的:Trash [{"id":"418","title":"\n\t\t\t\t\t\t\t\t\tPost Title....//..."}]
非常感谢这里的任何帮助。
新年快乐!
干杯本