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