Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当浏览器第一次请求服务器时,django 会生成一个 session obj,然后写入一个 set cookie header 来设置 session id 作为一个 cookie 响应。我的问题是如何在没有访问请求的情况下获取这个新生成的 sess id。COOKIES,请注意,此时,客户端不知道 sessid,因为尚未发送第一个响应。谢谢。
尝试
request.session.session_key
如果它不起作用,request.session.save()请先做
request.session.save()