使用这个Flask 引导项目,我想指定一些必须在 Flask 对象创建中定义的参数(如 template_folder、static_url_path 和 static_path)
这是代码的开始部分:
app_name = app_name or __name__
app = Flask(app_name)
config = config_str_to_obj(config)
configure_app(app, config)
configure_logger(app, config)
configure_blueprints(app, blueprints or config.BLUEPRINTS)
configure_error_handlers(app)
configure_database(app)
configure_context_processors(app)
configure_template_filters(app)
configure_extensions(app)
configure_before_request(app)
configure_views(app)
return app
但是没有办法指定前面指出的参数。
我怎样才能做到这一点而不用这种方法硬写它们(例如通过使用 Config 对象)。