Sometimes request.session.session_key is None

前端 未结 3 480
北恋
北恋 2021-01-04 09:56

I hit a problem when get session_key from request.session.

I am using Django1.8 and Python2.7.10 to set up a RESTful service.

Here is snippet of

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-04 10:22

    As per documentation:

    SessionStore.create() is designed to create a new session (i.e. one not loaded from the session store and with session_key=None). save() is designed to save an existing session (i.e. one loaded from the session store). Calling save() on a new session may also work but has a small chance of generating a session_key that collides with an existing one. create() calls save() and loops until an unused session_key is generated.

    Means it is safer to use create() instead of save(). So you can try like this:

    if not request.session.session_key:
        request.session.create()
    session_id = request.session.session_key
    

提交回复
热议问题