gpt4 book ai didi

python - django 中的身份验证

转载 作者:太空宇宙 更新时间:2023-11-04 06:31:29 24 4
gpt4 key购买 nike

我正在尝试在我的 django 网站上连接表单

如果在 shell 中,我会这样做:

$ ./manage.py shell
Python 2.6.4 (r264:75706, Oct 27 2009, 06:25:13)
[GCC 4.4.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from django.contrib import auth
>>> user = auth.authenticate(username='user', password='password')
>>>

如你所见,没问题

但如果按照我的观点,我有:

# views.py
...
from django.contrib import auth
...

def check_pass(request):
...
user = auth.authenticate(username='user', password='password')
...

我有一个带有堆栈跟踪的 500 错误页面:

Environment:

Request Method: POST
Request URL: http://localhost/check_pass/
Django Version: 1.1.1
Python Version: 2.6.4
Installed Applications:
['django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites']
Installed Middleware:
('django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware')


Traceback:
File "/usr/lib/python2.6/site-packages/django/core/handlers/base.py" in get_response
92. response = callback(request, *callback_args, **callback_kwargs)
File "/home/mart/programmation/python/django/martfiles/views.py" in check_pass
67. user = auth.authenticate(username='user', password='password')
File "/usr/lib/python2.6/site-packages/django/contrib/auth/__init__.py" in authenticate
37. user = backend.authenticate(**credentials)
File "/usr/lib/python2.6/site-packages/django/contrib/auth/backends.py" in authenticate
18. user = User.objects.get(username=username)
File "/usr/lib/python2.6/site-packages/django/db/models/manager.py" in get
120. return self.get_query_set().get(*args, **kwargs)
File "/usr/lib/python2.6/site-packages/django/db/models/query.py" in get
300. num = len(clone)
File "/usr/lib/python2.6/site-packages/django/db/models/query.py" in __len__
81. self._result_cache = list(self.iterator())
File "/usr/lib/python2.6/site-packages/django/db/models/query.py" in iterator
238. for row in self.query.results_iter():
File "/usr/lib/python2.6/site-packages/django/db/models/sql/query.py" in results_iter
287. for rows in self.execute_sql(MULTI):
File "/usr/lib/python2.6/site-packages/django/db/models/sql/query.py" in execute_sql
2369. cursor.execute(sql, params)
File "/usr/lib/python2.6/site-packages/django/db/backends/util.py" in execute
19. return self.cursor.execute(sql, params)
File "/usr/lib/python2.6/site-packages/django/db/backends/sqlite3/base.py" in execute
193. return Database.Cursor.execute(self, query, params)

Exception Type: OperationalError at /check_pass/
Exception Value: no such table: auth_user

我的设置.py

MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
)
...
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
)

我已经在没有任何更改的情况下运行了“syncdb”,我确信这是这一行的问题,因为我用

assert False
user = auth...

断言错误

user = auth...
assert False

没有这样的表auth_user

最佳答案

这对我有用:

在脚本的顶部:

from django.contrib.auth import authenticate, login, logout

身份验证:

 user = authenticate(username=request.POST['username'], password=request.POST['password'])
if user is not None:
if user.is_active:
login(request, user)
#user is loged in
else:
# user is not active
else:
# false authentification

我希望它对你有用:)

关于python - django 中的身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2080854/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com