91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Flask怎么實現一個請求鉤子

發布時間:2021-04-20 17:49:24 來源:億速云 閱讀:156 作者:Leah 欄目:開發技術

這篇文章給大家介紹使用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

關于使用Flask怎么實現一個請求鉤子就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兖州市| 林甸县| 墨脱县| 比如县| 玛曲县| 寻甸| 泽普县| 日喀则市| 旺苍县| 金湖县| 九江市| 广水市| 鞍山市| 肃宁县| 南部县| 泊头市| 河津市| 家居| 金溪县| 若尔盖县| 大连市| 福清市| 阿坝| 商河县| 甘孜县| 叶城县| 灯塔市| 正蓝旗| 永修县| 桦川县| 莱阳市| 扎赉特旗| 五峰| 布尔津县| 南郑县| 青河县| 高平市| 塔城市| 天柱县| 日照市| 天水市|