Flask之请求钩子的实现


Posted in Python onDecember 23, 2018

请求钩子

通过装饰器为一个模块添加请求钩子, 对当前模块的请求进行额外的处理. 比如权限验证.

说白了,就是在执行视图函数前后你可以进行一些处理,Flask使用装饰器为我们提供了注册通用函数的功能。

1、before_first_request:在处理第一个请求前执行

before_first_request

在对应用程序实例的第一个请求之前注册要运行的函数, 只会执行一次

#: A lists of functions that should be called at the beginning of the
  #: first request to this instance. To register a function here, use
  #: the :meth:`before_first_request` decorator.
  #:
  #: .. versionadded:: 0.8
  self.before_first_request_funcs = []

  @setupmethod
  def before_first_request(self, f):
    """Registers a function to be run before the first request to this
    instance of the application.

    .. versionadded:: 0.8
    """
    self.before_first_request_funcs.append(f)

将要运行的函数存放到before_first_request_funcs 属性中进行保存

2、before_request:在每次请求前执行

在每个请求之前注册一个要运行的函数, 每一次请求都会执行

#: A dictionary with lists of functions that should be called at the
  #: beginning of the request. The key of the dictionary is the name of
  #: the blueprint this function is active for, `None` for all requests.
  #: This can for example be used to open database connections or
  #: getting hold of the currently logged in user. To register a
  #: function here, use the :meth:`before_request` decorator.
  self.before_request_funcs = {} 

  @setupmethod
  def before_request(self, f):
    """Registers a function to run before each request."""
    self.before_request_funcs.setdefault(None, []).append(f)
    return f

将要运行的函数存放在字典中, None 为键的列表中存放的是整个应用的所有请求都要运行的函数.

3、after_request:每次请求之后调用,前提是没有未处理的异常抛出

在每个请求之后注册一个要运行的函数, 每次请求都会执行. 需要接收一个 Response 类的对象作为参数 并返回一个新的Response 对象 或者 直接返回接受到的Response 对象

#: A dictionary with lists of functions that should be called after
  #: each request. The key of the dictionary is the name of the blueprint
  #: this function is active for, `None` for all requests. This can for
  #: example be used to open database connections or getting hold of the
  #: currently logged in user. To register a function here, use the
  #: :meth:`after_request` decorator.
  self.after_request_funcs = {}

  @setupmethod
  def after_request(self, f):
    """Register a function to be run after each request. Your function
    must take one parameter, a :attr:`response_class` object and return
    a new response object or the same (see :meth:`process_response`).

    As of Flask 0.7 this function might not be executed at the end of the
    request in case an unhandled exception occurred.
    """
    self.after_request_funcs.setdefault(None, []).append(f)
    return f

4、teardown_request:每次请求之后调用,即使有未处理的异常抛出

注册一个函数在每个请求的末尾运行,不管是否有异常, 每次请求的最后都会执行.

#: A dictionary with lists of functions that are called after
  #: each request, even if an exception has occurred. The key of the
  #: dictionary is the name of the blueprint this function is active for,
  #: `None` for all requests. These functions are not allowed to modify
  #: the request, and their return values are ignored. If an exception
  #: occurred while processing the request, it gets passed to each
  #: teardown_request function. To register a function here, use the
  #: :meth:`teardown_request` decorator.
  #:
  #: .. versionadded:: 0.7
  self.teardown_request_funcs = {}

  @setupmethod
  def teardown_request(self, f):
    """Register a function to be run at the end of each request,
    regardless of whether there was an exception or not. These functions
    are executed when the request context is popped, even if not an
    actual request was performed.
    """
    self.teardown_request_funcs.setdefault(None, []).append(f)
    return f

将要运行的函数存放在字典中, None 为键的列表中存放的是整个应用的所有请求都要运行的函数.

from flask import Flask
app = Flask(__name__)

@app.before_first_request
def before_first_request():
  print('before_first_request')


@app.before_request
def before_request():
  print('before_request')


@app.after_request
def after_request(resp):
  print('after_request')
  return resp


@app.teardown_request
def teardown_request(e):
  print('teardown_request')


@app.route("/")
def view_fn():
  return "view_fn"
  
if __name__ == "__main__":
  app.run()

第一次请求:

页面输出:view_fn
控制台输出: before_first_request
            before_request
            after_request
            teardown_request

第二次请求:

页面输出:view_fn
控制台输出: before_request
            after_request
            teardown_request

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Pyramid Mako模板引入helper对象的步骤方法
Nov 27 Python
再谈Python中的字符串与字符编码(推荐)
Dec 14 Python
磁盘垃圾文件清理器python代码实现
Aug 24 Python
python+pandas分析nginx日志的实例
Apr 28 Python
浅析PyTorch中nn.Module的使用
Aug 18 Python
python openCV获取人脸部分并存储功能
Aug 28 Python
解决pycharm编辑区显示yaml文件层级结构遇中文乱码问题
Apr 27 Python
python使用hdfs3模块对hdfs进行操作详解
Jun 06 Python
Python-for循环的内部机制
Jun 12 Python
pytorch中的weight-initilzation用法
Jun 24 Python
python 实现逻辑回归
Dec 30 Python
python库Tsmoothie模块数据平滑化异常点抓取
Jun 10 Python
python爬虫获取新浪新闻教学
Dec 23 #Python
Python爬虫文件下载图文教程
Dec 23 #Python
python爬虫获取百度首页内容教学
Dec 23 #Python
Python爬虫设置代理IP(图文)
Dec 23 #Python
celery4+django2定时任务的实现代码
Dec 23 #Python
python3使用pandas获取股票数据的方法
Dec 22 #Python
Python实现将通信达.day文件读取为DataFrame
Dec 22 #Python
You might like
php 数组动态添加实现代码(最土团购系统的价格排序)
2011/12/30 PHP
apache中为php 设置虚拟目录
2014/12/17 PHP
PHP框架Laravel的小技巧两则
2015/02/10 PHP
PHP实现通过文本文件统计页面访问量功能示例
2019/02/13 PHP
javascript 闭包
2011/09/15 Javascript
jquery无法设置checkbox选中即没有变成选中状态
2014/03/27 Javascript
node.js中的socket.io入门实例
2014/04/26 Javascript
微信小程序 视图层(xx.xml)和逻辑层(xx.js)详细介绍
2016/10/13 Javascript
微信小程序 MD5加密登录密码详解及实例代码
2017/01/12 Javascript
详解js的异步编程技术的方法
2017/02/09 Javascript
js正则表达式验证表单【完整版】
2017/03/06 Javascript
vue-router实现tab标签页(单页面)详解
2017/10/17 Javascript
Vuex中mutations与actions的区别详解
2018/03/01 Javascript
解决vue-router在同一个路由下切换,取不到变化的路由参数问题
2018/09/01 Javascript
vue实现微信分享功能
2018/11/28 Javascript
vue基于两个计算属性实现选中和全选功能示例
2019/02/08 Javascript
使用koa2创建web项目的方法步骤
2019/03/12 Javascript
vue+iview动态渲染表格详解
2019/03/19 Javascript
vue-admin-template配置快捷导航的代码(标签导航栏)
2020/09/04 Javascript
python排序方法实例分析
2015/04/30 Python
在Python中处理字符串之isdigit()方法的使用
2015/05/18 Python
用ReactJS和Python的Flask框架编写留言板的代码示例
2015/12/19 Python
Python工程师面试题 与Python基础语法相关
2016/01/14 Python
对Python中内置异常层次结构详解
2018/10/18 Python
python实现自动化报表功能(Oracle/plsql/Excel/多线程)
2019/12/02 Python
Python3中的f-Strings增强版字符串格式化方法
2020/03/04 Python
CSS3实现各种图形的示例代码
2016/10/19 HTML / CSS
美国社交购物市场:MassGenie
2019/02/18 全球购物
Linux操作面试题
2015/02/11 面试题
团队精神演讲稿
2013/12/31 职场文书
物流毕业生个人的自我评价
2014/02/13 职场文书
销售目标责任书
2014/07/23 职场文书
2014年人事行政工作总结
2014/12/03 职场文书
中学感恩教育活动总结
2015/05/05 职场文书
入党积极分子培养人意见
2015/06/02 职场文书
webpack的移动端适配方案小结
2021/07/25 Javascript