我正在尝试使用以下 window.location 重定向到另一个页面,但是正在删除浏览器 localStorage 中的数据。我通过使用 JSON stringify 将数据存储到一个数组中:
function replaceCartStorage(arr){
if(arr.length==0){
localStorage.removeItem("cart");
window.location = "http://localhost/cw2/Basket.html";
}else{
localStorage["cart"] = JSON.stringify(arr);
window.location = "http://localhost/cw2/Basket.html";
}
}