django注销用户基于用户名

时间:2016-04-15 01:06:35

标签: python django django-admin django-authentication django-login

我正在尝试强制注销不再活动的django用户。我需要能够通过用户名强制用户注销。在做了一些研究之后,我发现django可以选择使用logout(请求)注销,但它没有给我选择基于用户名的注销。 任何人有任何想法? 感谢

我试图针对我的问题测试以下代码,该问题取自How to force user logout in django? 在我的模型中:

from django.contrib.auth.models import User
from django.db import models
from datetime import datetime

class MyUser(User):
force_logout_date = models.DateTimeField(null=True, blank=True)

def force_logout(self):
    self.force_logout_date = datetime.now()
    self.save()

然后我在views.py中添加了这个部分:

from myapp.models import MyUser
MyUser.objects.get(username='johndoe').force_logout()

但我现在有以下错误:

MyUser matching query does not exist.

Request Method:     POST
Request URL:    http://localhost:8000/datatableuser/?    
typeoftask=edit&username=xyzstaff
Django Version:     1.8.11
Exception Type:     DoesNotExist
Exception Value:    

MyUser matching query does not exist.

Exception Location:     /usr/local/lib/python2.7/dist-  
packages/django/db/models/query.py in get, line 334
Python Executable:  /usr/bin/python
Python Version:     2.7.6
Python Path:    

['/home/paul/Desktop/djangoproject/peptidetrackerdatabase/src',
'/usr/local/lib/python2.7/dist-packages/setuptools-20.3.1-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/pip-8.1.1-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/Sphinx-1.4-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/imagesize-0.7.0-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/alabaster-0.7.7-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/Babel-2.2.0-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/snowballstemmer-1.2.1-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/docutils-0.12-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/Pygments-2.1.3-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/Jinja2-2.8-py2.7.egg',
'/usr/local/lib/python2.7/dist-packages/MarkupSafe-0.23-py2.7-linux-x86_64.egg',
'/usr/lib/python2.7',
'/usr/lib/python2.7/plat-x86_64-linux-gnu',
'/usr/lib/python2.7/lib-tk',
'/usr/lib/python2.7/lib-old',
'/usr/lib/python2.7/lib-dynload',
'/usr/local/lib/python2.7/dist-packages',
'/usr/lib/python2.7/dist-packages',
'/usr/lib/python2.7/dist-packages/PILcompat',
'/usr/lib/python2.7/dist-packages/gtk-2.0',
'/usr/lib/pymodules/python2.7',
'/usr/lib/python2.7/dist-packages/ubuntu-sso-client']

Server time:    Thu, 14 Apr 2016 22:12:42 -0700    enter code here

1 个答案:

答案 0 :(得分:0)

这主要取决于您如何进行身份验证。如果不确切知道,就不可能给你一个答案。

但是,假设您使用的是默认的Django身份验证,则此答案应该仍然有效:

How to force user logout in django?

相关问题