Django AUTHENTICATION_BACKENDS 导入错误
Posted
技术标签:
【中文标题】Django AUTHENTICATION_BACKENDS 导入错误【英文标题】:Django AUTHENTICATION_BACKENDS import error 【发布时间】:2014-05-30 12:42:38 【问题描述】:在 settings.py 中导入自定义后端的正确方法是什么?我目前在 settings.py 中有以下内容:
AUTHENTICATION_BACKENDS = ('apps.apployment_site.auth.CustomAuth')
其中 apployment_site 是应用程序,auth 是文件名,CustomAuth 是类名。
在我看来,运行以下代码后,我得到:ImportError: a doesn't look like a module path
:
from django.contrib.auth import authenticate
from apployment_site import *
authenticate(username="username", password="password")
这是我的完整设置.py:
"""Django settings for apployment project.
For more information on this file, see
https://docs.djangoproject.com/en/dev/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/dev/ref/settings/
"""
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/dev/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '3(a=jr=tfedkqzv3f=495%0$ygxjt332(=n0&h=e2bzh(i#r*j'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'apployment_site'
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
AUTHENTICATION_BACKENDS = ('apps.apployment_site.auth.CustomAuth')
ROOT_URLCONF = 'apployment.urls'
WSGI_APPLICATION = 'apployment.wsgi.application'
# Database
# https://docs.djangoproject.com/en/dev/ref/settings/#databases
DATABASES =
'default':
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
# Internationalization
# https://docs.djangoproject.com/en/dev/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, javascript, Images)
# https://docs.djangoproject.com/en/dev/howto/static-files/
STATIC_URL = '/static/'
【问题讨论】:
【参考方案1】:确保它是一个元组:
AUTHENTICATION_BACKENDS = ('apps.apployment_site.auth.CustomAuth',)
注意最后的逗号
【讨论】:
这是正确的,谢谢!我还必须删除“应用程序”。正确的行是 AUTHENTICATION_BACKENDS = ('apployment_site.auth.CustomAuth',) 我也有同样的问题,但 AUTHENTICATION_BACKENDS = ('apployment_site.auth.CustomAuth',) 对我不起作用。它说 ImportError: No module named apployment_site.auth @Nitheesh,您的自定义应用程序的名称实际上是apployment_site
,还是有什么不同?你的python模块custom_app_name.auth.py
是否包含CutomAuth
类?【参考方案2】:
我认为您不需要将其实际导入您的view
。根据the documentation,当您调用authenticate()
时,Django 将通过您所有的身份验证后端。
因此,只需确保您在 settings.py
中拥有所需的所有身份验证后端即可。
【讨论】:
对,但 Django 似乎不喜欢我在 settings.py 中引用自定义后端的方式。你知道它的正确语法是什么吗? 'apps.apployment_site.auth.CustomAuth' 和 apployment_site.auth.CustomAuth' 都不起作用 你的目录结构是什么?您的 CustomAuth 在哪里?另外,为什么您的视图代码中有from apployment_site import *
?这不是引发错误的原因吗?
不,那只是导入我的模型。当我定义 authentication_backend 时,错误出现在我的 settings.py 中。目前,auth 是在我的 apployment_site 应用程序中定义的一个文件,主类称为 CustomAuth。这就是为什么我认为 AUTHENTICATION_BACKENDS = ('apps.apployment_site.auth.CustomAuth') 是引用它的正确方法。
您能发布您的整个settings.py
文件吗?奇怪的是它说 'a' 看起来不像是模块路径。
当然,我编辑了我的原始帖子以包含它。感谢大家的帮助!以上是关于Django AUTHENTICATION_BACKENDS 导入错误的主要内容,如果未能解决你的问题,请参考以下文章