因此,假设您有一个变量“ data”,然后将数据以JSON格式存储并使用JSON.stringify(data)转换为字符串。然后,您将如何获取此JSON数据并将其另存为文件x在/ pc / locationX的位置?
答案 0 :(得分:1)
如其他注释所述,您不能选择下载路径目标。但是,您可以使用以下方法来允许您的用户下载JSON文件。您可能已经猜到可以使用以下方法,因为您已经知道可以使用JSON.stringify()。
let cartItem = Storage.getProduct(id);
cartItem.amount = 1
答案 1 :(得分:0)
localStorage.setItem('user',JSON.stringify(user));然后从存储中检索它并再次转换为对象:
var user = JSON.parse(localStorage.getItem('user'));如果需要删除商店的所有条目,只需执行以下操作:
localStorage.clear();