【Flask项目2】登录拦截器的使用和退出登录的接口开发(14)

在人生的道路上,不管是潇洒走一回,或者是千山独行,皆须是自己想走的路,虽然,有的人并不是很快就能找到自己的方向和道路,不过,只要坚持到底,我相信,就一定可以找到自己的路,只要找到路,就不必怕路途遥远了。

导读:本篇文章讲解 【Flask项目2】登录拦截器的使用和退出登录的接口开发(14),希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

comment—utils—》decorators.py

自定义一个装饰器,如果登录了继续访问。如果没有登录直接返回(不能继续访问)

from flask import g

def login_required(func):
	def wrapper(*args,**kwargs):
		if g.user_id is not None:
			return func(*args,**kwargs)
		else:
			return {'message':'用户没有登录,不能访问'}
	return wrapper

financial—》resource—》user—》user_resource.py
退出登录接口开发

from comment.utils.decorators import login_required

class LoginOut(Resource):
	'''
	退出登录
	'''
	#使用登录拦截的装饰器,post方法加上了登录拦截,因为前提必须登录后,才能退出登录
	
	method_decorators=[login_required]
	def post(self):
		if g.user_id:
			g.user_id=None
		return {'msg':'成功推迟登录'}
	

蓝图中加载资源

financial—》resource—》user—》init.py

#登录退出的资源
user_api.add_resource(LoginOut,'/loginOut',endpoint='loginOut')

使用了登录拦截的装饰器,资源类中的3个视图函数都加上了登录拦截

class Test(Resource):
	
	method_decorators = [login_required]

	def post(self):
	 	pass
	
	def get(self):
	 	pass
	
	def put(self):
	 	pass

使用了登录拦截的装饰器,在指定的视图方法下加登录拦截,post、get方法加上了登录拦截

class Test(Resource):
	
	method_decorators = {
		'post':[login_required],
		'get':[login_required]
	}

	def post(self):
	 	pass
	
	def get(self):
	 	pass
	
	def put(self):
	 	pass

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/123338.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!