在 django 中设置 cookie 时出现问题

发布于 2024-11-02 23:42:52 字数 293 浏览 1 评论 0原文

我正在尝试使用以下代码设置和读取 cookie,

cookie_name = 'fbs_%s' % practice_settings.PRACTICE_ID
response = HttpResponse( "blah" )
response.set_cookie( cookie_name, "cookie_value" )
value = request.COOKIES.get(cookie_name)
print value

由于某种原因,值仍然为“无”。我在这里缺少一些简单的东西吗?提前致谢

I am trying to set and read cookies using the following code

cookie_name = 'fbs_%s' % practice_settings.PRACTICE_ID
response = HttpResponse( "blah" )
response.set_cookie( cookie_name, "cookie_value" )
value = request.COOKIES.get(cookie_name)
print value

For some reason value remains None. Is there something simple that I am missing here? Thanks in advance

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

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

发布评论

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

评论(1

城歌 2024-11-09 23:42:52

您正在响应对象中设置 cookie (response.set_cookie( cookie_name, "cookie_value")),但尝试从请求对象中检索它 (request.COOKIES.get(cookie_name) )。

当您在响应中设置 cookie 时,它​​不会自动填充到原始请求中。它将在您设置 cookie 后调用的视图的下一个请求中可用。

You are setting the cookie in the response object (response.set_cookie( cookie_name, "cookie_value")), but trying to retrieve it from the request object (request.COOKIES.get(cookie_name)).

When you set a cookie in the response it will not automatically be populated in the original request. It will be available in the following request of the view you call after the one you set the cookie.

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