0
2

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】get_user_model()

Posted at

get_user_model()

CustomUserモデル、DjangoデフォルトのUserモデルを問わず、使用しているUserモデル自体を返してくれる関数。

使い方

from django.contrib.auth import get_user_modelをインポートすると使用できる。

  • 公式で推奨されている通り、デフォルトのUserモデルを使用することは推奨されていない。
  • 何らかのCustomUserモデルを作成し、多くのユースケースに適切なUserモデルの参照先を簡単に提供することができる。
  • すなわち、viewsファイルなどで簡単にuserオブジェクトを作ることができる。
    • user = get_user_model()

補足

CustomUserモデルを作成するとsettings.pyに変更の旨を記述(AUTH_USER_MODEL = 'some.User')し、
UserModel = settings.AUTH_USER_MODELのようにuserモデルを参照することができるが、
これはviewsでは使うことができない。

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?