标签:服务器 handle style and 定义 用户 response 返回值 返回
自定义错误处理方法:
当客户端访问浏览器是,得到相对应的状态码,服务器通过状态码给用户相对应的页面。
@app.errorhandler(404) def handle_404_error(err): ‘‘‘自定义的处理错误方法‘‘‘ # 这个函数的返回值会是前端用户看到的结果 return response("404.html")
最重要的是通过装饰器来返回的,里面的404是相对应的状态码。可以改动。
标签:服务器 handle style and 定义 用户 response 返回值 返回
原文地址:https://www.cnblogs.com/zengsf/p/10109254.html