1.
@app.route(‘/‘) def hello_world(): # 设置网页状态码 abort(404) return "qaaa" # 如果网页状态码为404则执行下面内容 @app.errorhandler(404) def page_found(e): # e:为网页报错信息 print(e) # 可以自己设置404错误的页面内容 return f"页面找不到!{e}"
Flask_abort和errorhandler自定义错误页面
原文:https://www.cnblogs.com/wangdianchao/p/13669852.html