这是URL编码的等效项,
{"items":{"8":1}}即您想要的JSON字符串。
您所要做的就是解码并解析JSON:
var cart = JSON.parse(depreURIComponent(document.cookie.cart));
然后,日志记录购物车应为您提供一个具有“项目”属性的对象,您可以根据需要访问该属性。
编辑:
例如,这是一种遍历项目并确定项目总数及其全部数量的方法。
var items_total = 0, quantity_total = 0;for (var prop in cart.items) { items_total += 1; quantity_total += cart.items[prop];}console.log("Total Items: " + items_total);console.log("Total Quantities: " + quantity_total);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)