将参数传递给flask中的`before_first_request_funcs`

时间:2015-10-29 14:58:29

标签: python flask

我希望我传递给before_first_request_funcs的函数能够访问app.config个对象 我可以以某种方式向函数传递参数吗? 访问"当前应用对象" (它不是真正的全球性,我可以访问它,对吗?)

1 个答案:

答案 0 :(得分:2)

Yes, just access the current_app. This is the way to do it. The before_first_request callback run inside the app context.