Django中login_required装饰器的深入介绍
作者:James 时间:2023-08-22 09:18:28
前言
Django提供了多种装饰器, 其中login_required可能是经常会使用到的。 这里介绍下四种使用此装饰器的办法。
当然, 在使用前, 记得在工程目录的settings.py中设置好LOGIN_URL
使用方法
1. URLconf中装饰
from django.contrib.auth.decorators import login_required, permission_required
from django.views.generic import TemplateView
from .views import VoteView
urlpatterns = [
url(r'^about/', login_required(TemplateView.as_view(template_name="secret.html"))),
url(r'^vote/', permission_required('polls.can_vote')(VoteView.as_view())),
]
2. 装饰基于函数的视图
from django.contrib.auth.decorators import login_required
from django.http import HttpResponse
@login_required
def my_view(request):
if request.method == 'GET':
# <view logic>
return HttpResponse('result')
3. 装饰类的视图
from django.contrib.auth.decorators import login_required
from django.utils.decorators import method_decorator
from django.views.generic import TemplateView
class ProtectedView(TemplateView):
template_name = 'secret.html'
@method_decorator(login_required)
def dispatch(self, *args, **kwargs):
return super(ProtectedView, self).dispatch(*args, **kwargs)
4. 装饰通过Mixin类继承来实现
from django.contrib.auth.decorators import login_required
from django.http import HttpResponseRedirect
from django.shortcuts import render
from django.views.generic import View
from .forms import MyForm
class LoginRequiredMixin(object):
@classmethod
def as_view(cls, **initkwargs):
view = super(LoginRequiredMixin, cls).as_view(**initkwargs)
return login_required(view)
class MyFormView(LoginRequiredMixin, View):
form_class = MyForm
initial = {'key': 'value'}
template_name = 'form_template.html'
def get(self, request, *args, **kwargs):
form = self.form_class(initial=self.initial)
return render(request, self.template_name, {'form': form})
def post(self, request, *args, **kwargs):
# code here
Django 用户登陆访问限制 @login_required
在网站开发过程中,经常会遇到这样的需求:用户登陆系统才可以访问某些页面,如果用户没有登陆而直接访问就会跳转到登陆界面。
要实现这样的需求其实很简单:
1、在相应的 view 方法的前面添加 django 自带的装饰器 @login_required
2、在 settings.py 中配置 LOGIN_URL 参数
3、修改 login.html 表单中的 action 参数
# views.py
from djanco.contrib.auth.decorators import login_required
from django.shortcuts import render_to_response
@login_required
def index(request):
return render_to_response('index.html')
# settings.py
....
LOGIN_URL = '/accounts/login/' # 根据你网站的实际登陆地址来设置
....
如果要使用 django 默认登陆地址,则可以通过在 urls.py 中添加如此配置:
# urls.py
....
url(r'^accounts/login/', views.login),
....
# login.html
<div class="container">
<form class="form-signin" action="/accounts/login/" method="post">
{% csrf_token %}
<!--csrf_token:生成令牌-->
<h2 class="form-signin-heading" align="center">登录系统</h2>
<label for="inputUsername" class="sr-only">username</label>
<input type="text" name="username" id="inputUsername" class="form-control" placeholder="username" required autofocus>
<label for="inputPassword" class="sr-only">Password</label>
<input type="password" name="password" id="inputPassword" class="form-control" placeholder="Password" required>
<div class="checkbox">
<label>
<input type="checkbox" value="remember-me"> 记住密码
</label>
</div>
<br />
<button class="btn btn-lg btn-primary btn-block" type="submit">登录</button>
<br />
<span style="color: red;">{{ login_err }}</span>
</form>
</div>
<!-- /container -->
来源:https://segmentfault.com/a/1190000012056602
标签:django,login,required,装饰器
0
投稿
猜你喜欢
python 脚本生成随机 字母 + 数字密码功能
2021-11-27 23:37:10
Python实现设置windows桌面壁纸代码分享
2022-03-23 03:52:46
python清除字符串里非字母字符的方法
2022-08-27 16:04:02
Mybatis-Plus读写Mysql的Json字段的操作代码
2024-01-15 15:34:29
oracle 中 sqlplus命令大全
2024-01-23 21:07:27
国产化设备鲲鹏CentOS7上源码安装Python3.7的过程详解
2023-04-23 14:08:42
原生JS实现弹幕效果的简单操作指南
2024-04-22 22:31:20
Oracle生成随机数字、字符串、日期、验证码及 UUID的方法
2024-01-23 08:06:03
python pexpect ssh 远程登录服务器的方法
2021-07-10 22:28:53
[整理版]防止Access数据库被下载的9种方法
2007-08-10 09:31:00
dl+ol应用
2008-06-21 17:04:00
mysql 一次向表中插入多条数据实例讲解
2024-01-14 06:34:48
调试PHP程序的多种方法介绍
2024-06-05 09:48:51
python语言元素知识点详解
2023-07-30 03:33:08
C#中实现查找mysql的安装路径
2024-01-24 05:48:15
pytorch 查看cuda 版本方式
2022-07-16 23:43:05
用Python生成HTML表格的方法示例
2023-10-16 02:27:34
asp关键词屏蔽过滤函数代码
2010-05-04 16:32:00
python webp图片格式转化的方法
2021-09-03 16:27:44
SQL Server 2000数据库FOR XML查询概述
2008-12-09 14:49:00