September 2015
Intermediate to advanced
288 pages
5h 30m
English
Displaying a browser's default error pages to the end user is jarring as the user loses all context of your app, and they must hit the back button to return to your site. To display your own templates when an error is returned with the Flask abort() function, use the errorhandler decorator function:
@app.errorhandler(404)
def page_not_found(error):
return render_template('page_not_found.html'), 404The errorhandler is also useful to translate internal server errors and HTTP 500 code into user-friendly error pages. The app.errorhandler() function may take either one or many HTTP status codes to define which code it will act on. The returning of a tuple instead of just an HTML string allows you to define the HTTP status code of the Response ...