直接将app.debug = True时,程序出错并没有出现调试界面。
按照如下设置,flask+uwsgi情况下,python报错时会在浏览器中提示错误信息。方便调试。
from werkzeug.debug import DebuggedApplication app.wsgi_app = DebuggedApplication(app.wsgi_app, True)
http://stackoverflow.com/a/17839750/1767800
时间: 2024-10-09 04:14:58