Flask Flask 配置方法 第一种:硬编码到代码中app = Flask(__name__) # 配置硬编码 app.config.update( DEBUG=True ) ...app.config 是 flask.config.Config 类的实例,继承自 Python 内置数据结构 dict,因此还可以:app.config["DEBUG"] = True 阅读全文 2019-06-14 Guan 0 条评论 1283 次浏览 0 次喜欢