Django Cookiecutter:如何在config / settings / base.py中导入AUTH_USER_MODEL?

时间:2017-08-18 06:55:07

标签: django cookiecutter-django

众所周知,Django-Cookiecutter对设置文件有不同的设置。来自django.conf导入设置的常规 在此处不起作用。

我想引用settings目录中base.py文件中定义的自定义用户模型。有任何想法吗?

以下是我的项目布局:

repository/
    config/
        settings/
            __init__.py
            base.py # where the auth_user_model variable is defined
            local.py
            production.py
            test.py
    app_dir/
        users/
            __init__.py
            models.py # where the custom user model is stored

我还尝试直接从users / models.py导入自定义用户模型,如下所示:

from users.models import User

但是出现了以下错误:

RuntimeError: Model class users.models.User doesn't declare an 
explicit app_label and isn't in an application in INSTALLED_APPS.

2 个答案:

答案 0 :(得分:2)

试过以下内容,到目前为止似乎有效:

from config.settings.base import AUTH_USER_MODEL

答案 1 :(得分:0)

from django.contrib.auth import get_user_model

它将返回您在base.py中定义的django用户类

修改

from django.conf.settings import AUTH_USER_MODEL