在 cookie 中存储和检索 json 对象
我尝试将 json 对象存储在 cookie 中,但遇到了一些问题。 我可以像这样创建我的对象:
product = {
"name" : "prodname",
"quantity" : 4
}
然后我将该对象保存在我的 cookie 中。随着更多产品的添加(它是一个购物篮),我通过将新对象附加到 cookie 字符串的末尾来添加更多字符串(所以我本质上有很多小的独立对象)。不过,我无法将对象从 cookie 字符串中取出。当我尝试从 cookie 读回对象时,$.parseJSON
和 eval
都失败。任何帮助将不胜感激。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 JSON.stringify(cookieStr) 返回的值保存到 cookie 并不是一个好习惯。它可能会导致某些浏览器出现错误。
在使用它之前,您应该将其转换为base64(使用btoa),并且在读取它时,从base64转换(使用atob)
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)
它可能应该是这样的:
[]
表示一个数组。当您想要添加另一个产品时,您可以从 cookie 加载它,更新数组,然后再次保存。如果你愿意,你可以跳过外部对象并让 cookie 只是数组。编辑:假设
cookieStr
是您的 cookie。It should probably be like:
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.