错误页处理

常见的404,500,502等等,flask可以统一处理

@app.errorhandler(404)
def page_not_found(e):
    return render_template('404.html'), 404

@app.errorhandler(500)
def internal_server_error(e):
    return render_template('500.html'), 500

results matching ""

    No results matching ""