admin管理员组文章数量:1341426
I tried using several mechanisms, including the jquery cookie plugin. When I try to read this cookie, I always get an empty result. Chrome's Developer Console shows that the sessionid cookie is indeed set. However, there's a checkmark for the HTTP column for that cookie, which is different than the other cookies. I'm developing on my localhost, if that makes a difference.
I tried using several mechanisms, including the jquery cookie plugin. When I try to read this cookie, I always get an empty result. Chrome's Developer Console shows that the sessionid cookie is indeed set. However, there's a checkmark for the HTTP column for that cookie, which is different than the other cookies. I'm developing on my localhost, if that makes a difference.
Share Improve this question asked Jul 4, 2013 at 18:37 lairtechlairtech 2,4274 gold badges29 silver badges39 bronze badges1 Answer
Reset to default 16It's a HTTP-only cookie; they cannot be read by JavaScript.
http://en.wikipedia/wiki/HTTP_cookie#Secure_and_HttpOnly
It's explained in the documentation about sessions:
https://docs.djangoproject./en/dev/topics/http/sessions/#using-cookie-based-sessions
The behavior can be changed by setting SESSION_COOKIE_HTTPONLY
to false (but that is not remended; see link above).
本文标签: Django Cannot access sessionid cookie using JavascriptStack Overflow
版权声明:本文标题:Django: Cannot access sessionid cookie using Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743663418a2518326.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论