Django:在视图中如何获取将成为以下响应的 Set-Cookie 标头一部分的 sessionid?
如果视图包含登录或注销,
该sessionid与请求的Coockie header中提交的sessionid不同。
我需要在出于某种目的返回响应之前检索它。
我该怎么做?
In case of views that contain login or logout,
this sessionid is different from the one submitted in request's Coockie header.
I need to retrieve it before returning response for some purpose.
How can I do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您应该能够通过
request.session.session_key
访问它I think you should be able to access this via
request.session.session_key