博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Django积木块六——验证用户是否登录
阅读量:4990 次
发布时间:2019-06-12

本文共 662 字,大约阅读时间需要 2 分钟。

验证用户是否登录

# 开始在用户登录的时候验证结束后login登录# request.user.is_authenticated(){% if request.user.is_authenticated %}# 函数用这样的装饰器from django.contrib.auth.decorators import login_required@login_required# 类用这样的基础登录函数(minxi表示一些基础的类)from django.contrib.auth.decorators import login_requiredfrom django.utils.decorators import method_decoratorclass LoginRequiredMixin(object):    @method_decorator((login_required(login_url='/login/')))    def dispatch(self, request, *args, **kwargs):        return super(LoginRequiredMixin, self).dispatch(request, *args, **kwargs)在视图中应该这样写class CourseCommentView(LoginRequiredMixin, View)

转载于:https://www.cnblogs.com/NeedEnjoyLife/p/6943423.html

你可能感兴趣的文章
EasyUI easyui-combobox 重复发送请求
查看>>
memcached-repcached
查看>>
[转]CentOS 5.3通过yum升级php到最新版本的方法
查看>>
UVA 11235 - Frequent values RMQ的应用
查看>>
大数据日志采集系统
查看>>
java 堆调优
查看>>
linux 安装JDK
查看>>
JAVA调用CMD命令
查看>>
weblogic的安装
查看>>
SSM框架中,controller的action返回参数给vue.js
查看>>
Mysql 基础3
查看>>
smartctl工具应用(转载整理)
查看>>
控件数据绑定总结
查看>>
HTTP协议
查看>>
Vue 框架-09-初识组件的应用
查看>>
.Net core 在类库中获取配置文件Appsettings中的值
查看>>
[转载]sublime用法精华
查看>>
《甄嬛传》影评(整理)
查看>>
数的位数
查看>>
MySQL合并多行
查看>>