django 中的身份验证

问题描述 投票:0回答:2

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

如果在外壳中我这样做:

$ ./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

python django authentication
2个回答
1
投票

在脚本顶部:

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

0
投票

静态文件相同,我需要将数据库放在我的主文件夹之外,而不是放在我的Python文件旁边。

© www.soinside.com 2019 - 2024. All rights reserved.