flask debug 模式开启

时间:2021-08-17 12:26:32
debug 模式开启
最近在写python flask 的Waf后台管理界面,想要启用调试模式,发现安装目前网上流行的两种方式均无法在我的Pycharm中打开调试模式。
)直接在对象上设置

app.debug=True
app.run()

)作为run的参数传入进去

app.run(debug=True)

简单研究了一下后,发现是flask 更新到1.0以后 不支持使用debug =True 来开启调试模式了。
Prior to Flask . This can still be used to control debug mode, but you should prefer setting the development environment as shown above.

解决办法:
Pycharm 2018环境中可以直接右键运行按钮左边下拉菜单的Edit Configurations,勾上Flask_Debug后面的小勾就好了。
linux环境的话直接
export Flask_Debug = 

就可以了。

总之,只要改变了Flask_Debug的值就可以开启调试模式了,1为开, 为关

如何打开debug

flask debug 模式开启


flask debug 模式开启