Flask之請求鉤子的實現(xiàn)
請求鉤子
通過裝飾器為一個模塊添加請求鉤子, 對當前模塊的請求進行額外的處理. 比如權(quán)限驗證.
說白了,就是在執(zhí)行視圖函數(shù)前后你可以進行一些處理,F(xiàn)lask使用裝飾器為我們提供了注冊通用函數(shù)的功能。
1、before_first_request:在處理第一個請求前執(zhí)行
before_first_request
在對應(yīng)用程序?qū)嵗牡谝粋€請求之前注冊要運行的函數(shù), 只會執(zhí)行一次
#: 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)
將要運行的函數(shù)存放到before_first_request_funcs 屬性中進行保存
2、before_request:在每次請求前執(zhí)行
在每個請求之前注冊一個要運行的函數(shù), 每一次請求都會執(zhí)行
#: 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
將要運行的函數(shù)存放在字典中, None 為鍵的列表中存放的是整個應(yīng)用的所有請求都要運行的函數(shù).
3、after_request:每次請求之后調(diào)用,前提是沒有未處理的異常拋出
在每個請求之后注冊一個要運行的函數(shù), 每次請求都會執(zhí)行. 需要接收一個 Response 類的對象作為參數(shù) 并返回一個新的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:每次請求之后調(diào)用,即使有未處理的異常拋出
注冊一個函數(shù)在每個請求的末尾運行,不管是否有異常, 每次請求的最后都會執(zhí)行.
#: 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
將要運行的函數(shù)存放在字典中, None 為鍵的列表中存放的是整個應(yīng)用的所有請求都要運行的函數(shù).
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
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Python實現(xiàn)返回數(shù)組中第i小元素的方法示例
這篇文章主要介紹了Python實現(xiàn)返回數(shù)組中第i小元素的方法,結(jié)合實例形式分析了Python針對數(shù)組的遍歷、排序、運算等相關(guān)操作技巧,需要的朋友可以參考下2017-12-12pytorch通過訓(xùn)練結(jié)果的復(fù)現(xiàn)設(shè)置隨機種子
這篇文章主要介紹了pytorch通過訓(xùn)練結(jié)果的復(fù)現(xiàn)設(shè)置隨機種子的操作,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2021-06-06python3 自動識別usb連接狀態(tài),即對usb重連的判斷方法
今天小編就為大家分享一篇python3 自動識別usb連接狀態(tài),即對usb重連的判斷方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-07-07torchtext入門教程必看,帶你輕松玩轉(zhuǎn)文本數(shù)據(jù)處理
這篇文章主要介紹了torchtext入門教程必看,帶你輕松玩轉(zhuǎn)文本數(shù)據(jù)處理,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2021-05-05使用Python實現(xiàn)為PDF文檔設(shè)置背景色或背景圖
PDF作為一種跨平臺、高保真的文件格式被廣泛應(yīng)用,這篇文章主要為大家詳細介紹了如何使用Python代碼對PDF文檔進行頁面背景色或背景圖片的設(shè)置,需要的可以參考下2024-04-04Django1.11配合uni-app發(fā)起微信支付的實現(xiàn)
這篇文章主要介紹了Django1.11配合uni-app發(fā)起微信支付的實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2019-10-10