使用 javascript 无法看到某些 cookie
我正在尝试使用客户端 JavaScript 访问 cookie。
在服务器上我使用 node.js 和 cookies 模块。我设置了两个cookie,“UUID”和“nick”。
我可以在服务器上正确地读回这些内容,而且我还可以通过查看浏览器首选项中存储的 cookie 来查看它们的设置(我已经尝试使用 Chrome 和 Firefox)。
但是,当我尝试在客户端上访问它们时,我似乎只能访问“UUID”,而不是“nick”。我尝试过各种 JS cookie 读取功能,并且还只是转储 document.cookie - 一切似乎都表明“nick”cookie 不存在。
有人可以帮忙吗?
I'm trying to access cookies using client-side javascript.
On the server I'm using node.js and cookies module. I set two cookies, "UUID" and "nick".
I can read these back correctly on the server, and I can also see that they are set by looking at the stored cookies in browser prefs (I've tried with Chrome and Firefox).
However, when I try to access them on the client, I can only seem to access "UUID", not "nick". I've tried various JS cookie reading function, and also just dumping document.cookie - everything seems to indicate that the "nick" cookie is not present.
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 cookie 的第 7 个参数是否未设置为 TRUE(如果是,则服务器端 cookie 无法通过 javascript 读取)
Check out if the 7th parameter of the cookie is not set to TRUE(if he is, a serverside cookie is not readable via javascript)