0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Djangoのセッション管理

Last updated at Posted at 2022-08-23

Djangoで開発をしていますが、セッションの中身参照方法をよく忘れてしまうので自分用のメモです。

1 ターミナルを開き、現在編集中のファイルに移動しshellに入る。

python manage.py shell

2 セッションを有効にする

from django.contrib.sessions.models import Session

3 セッションの中身を参照

Session.objects.get(session_key='セッションキーを入力する').get_decoded()

*セッションキーに関しては、デベロッパーツールのアプリケーションから取得する。

以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?