gpt4 book ai didi

javascript - 在 HTML5 本地存储中存储一个 javascript 对象

转载 作者:太空宇宙 更新时间:2023-11-04 13:54:18 24 4
gpt4 key购买 nike

我想在 HTML5 本地存储中存储一个 JavaScript 对象。

sessionStorage.setItem("localObj",this);

我在函数中使用上面的语句。该对象包含 HTML 标记。我既不能将它转换为字符串也不能转换为 JSON。我该如何处理?

最佳答案

You have to first convert the object into json and then store in local storage. And when you want to reuse the stored data you have to deserialize the json string into javascript object and it will work fine.

Working Sample

function setValue() {
var obj = new user();
var jsonObject = JSON.stringify(obj);
sessionStorage.setItem("Gupta", jsonObject);
getValue();
}

function user() {
this.Name = "rahul";
this.Age = 20;
}

function getValue() {
var json_string = sessionStorage.getItem("Gupta");
var obj = JSON.parse(json_string)
alert("Name = "+obj.Name + ", Age = " + obj.Age);
}

关于javascript - 在 HTML5 本地存储中存储一个 javascript 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18459197/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com