flask debug 模式開啓

debug 模式開啓
最近在寫python flask 的Waf後臺管理界面,想要啓用調試模式,發現安裝目前網上流行的兩種方式均沒法在個人Pycharm中打開調試模式。 
1)直接在對象上設置

app.debug=True
app.run()
1
2
2)做爲run的參數傳入進去

app.run(debug=True)
1
簡單研究了一下後,發現是flask 更新到1.0之後 不支持使用debug =True 來開啓調試模式了。 
Prior to Flask 1.0 the FLASK_ENV environment variable was not supported and you needed to enable debug mode by exporting FLASK_DEBUG=1. 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 = 1

就能夠了。

總之,只要改變了Flask_Debug的值就能夠開啓調試模式了,1爲開,0 爲關
如何打開debug

 

 



相關文章
相關標籤/搜索