Flask 统一拦截器

python 复制代码
import os
 
from flask import Flask, request, session
 
app = Flask(__name__)
app.config['SECRET_KEY'] = os.urandom(24)  # 生成24位的随机数种子,用于产生SESSION ID
 
 
@app.route('/article/<int:article_id>')
def test(article_id):
    """
    路由地址参数, 必须同步定义在接口函数里,作为形参
    """
    return f'你正在访问编号为:{article_id}的文章'
 
 
@app.route('/sess')
def sess():
    session['is_login'] = 'true'
    return 'done'
 
 
@app.before_request
def before():
    """
    针对app实例定义全局拦截器
    """
    url = request.path  # 读取到当前接口的地址
    if url == '/sess':
        pass
    elif session.get('is_login', '') != 'true':
        return '你还没有登录'
    else:
        pass
    
 
if '__name__' == '__main__':
    app.run()

模块拦截器

也叫视图拦截器,只针对某一个模块进行拦截,应用于Blueprint模块中。

把需要事前拦截的接口和拦截器一起放在一个视图模板里

comment = Blueprint('comment', name)

#评论操作前通过模块拦截器判断--用户是否登录

@comment.before_request

def before_comment():

#未登录情况下允许获取评论

if session.get('islogin') is None or session.get('islogin') != 'true':

return '你还没有登录,不能发表评论'

return 'not-login'

相关推荐
Victor35619 小时前
Redis(154)Redis的数据一致性如何保证?
后端
秋邱20 小时前
高等教育 AI 智能体的 “导学诊践” 闭环
开发语言·网络·数据库·人工智能·python·docker
r***869820 小时前
springboot三层架构详细讲解
spring boot·后端·架构
Victor35620 小时前
Redis(155)Redis的数据持久化如何优化?
后端
组合缺一20 小时前
Solon AI 开发学习6 - chat - 两种 http 流式输入输出
python·学习·http
许泽宇的技术分享20 小时前
AgentFramework-零基础入门-第08章_部署和监控代理
人工智能·后端·agent框架·agentframework
沐浴露z20 小时前
为什么使用SpringAI时通常用Builder来创建对象?详解 【Builder模式】和【直接 new】的区别
java·python·建造者模式
青瓷程序设计20 小时前
【宠物识别系统】Python+TensorFlow+Vue3+Django+人工智能+深度学习+卷积神经网络算法
人工智能·python·深度学习
IT_陈寒20 小时前
Python开发者必看:5个被低估但能提升200%编码效率的冷门库实战
前端·人工智能·后端
g***789120 小时前
鸿蒙NEXT(五):鸿蒙版React Native架构浅析
android·前端·后端