在 cookie 中存储和检索 json 对象

发布于 2024-10-27 21:47:22 字数 340 浏览 2 评论 0原文

我尝试将 json 对象存储在 cookie 中,但遇到了一些问题。 我可以像这样创建我的对象:

product = {
   "name" : "prodname",
   "quantity" : 4
}

然后我将该对象保存在我的 cookie 中。随着更多产品的添加(它是一个购物篮),我通过将新对象附加到 cookie 字符串的末尾来添加更多字符串(所以我本质上有很多小的独立对象)。不过,我无法将对象从 cookie 字符串中取出。当我尝试从 cookie 读回对象时,$.parseJSONeval 都失败。任何帮助将不胜感激。

Im attempting to store json objects in a cookie, but im running into a few problems.
I can create my object like this:

product = {
   "name" : "prodname",
   "quantity" : 4
}

i then save this object in my cookie. As more products are added (its a shopping basket) i add further strings by appending new objects onto the end of the cookie string (so i essentially have lots of small seperate objects) . Im having trouble getting the objects back out of the cookie string though. Both $.parseJSON and eval fail when i attempt to read the objects back from the cookie. Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

过去的过去 2024-11-03 21:47:22

将 JSON.stringify(cookieStr) 返回的值保存到 cookie 并不是一个好习惯。它可能会导致某些浏览器出现错误。

在使用它之前,您应该将其转换为base64(使用btoa),并且在读取它时,从base64转换(使用atob)

val = JSON.stringify(cookieStr)
val = btoa(val)

write_cookie(val)

its not a good practice to save the value that returned from JSON.stringify(cookieStr) to the cookie. it can lead to a bug in some browsers.

before using it you should convert it to base64 (using btoa), and when reading it, converting from base64 (using atob)

val = JSON.stringify(cookieStr)
val = btoa(val)

write_cookie(val)
挥剑断情 2024-11-03 21:47:22

它可能应该是这样的:

{"products": [
    {
       "name" : "prodname",
       "quantity" : 4
    },
    {
       "name" : "prodname2",
       "quantity" : 3
    }
]}

[] 表示一个数组。当您想要添加另一个产品时,您可以从 cookie 加载它,更新数组,然后再次保存。如果你愿意,你可以跳过外部对象并让 cookie 只是数组。

编辑:假设 cookieStr 是您的 cookie。

var root = $.parseJSON(cookieStr);
root.products.push(newProduct);
cookieStr = JSON.stringify(root);

It should probably be like:

{"products": [
    {
       "name" : "prodname",
       "quantity" : 4
    },
    {
       "name" : "prodname2",
       "quantity" : 3
    }
]}

The [] signifies an array. When you want add another product, you load it from the cookie, update the array, then save it again. If you wanted, you could skip the outer object and have the cookie just be the array.

EDIT: Say cookieStr is your cookie.

var root = $.parseJSON(cookieStr);
root.products.push(newProduct);
cookieStr = JSON.stringify(root);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文