异常
异常可以从请求处理程序中抛出,并由Sanic自动处理。异常将消息作为第一个参数,也可以在HTTP响应中传回状态代码。
抛出异常
需要抛出异常,只需从sanic.exceptions模块导入相关的异常类。
from sanic.exceptions import ServerError
@app.route('/killme')
def i_am_ready_to_die(request):
raise ServerError("Something bad happened", status_code=500)
处理异常
要重写Sanic对异常的默认处理,使用@ app.exception装饰器。 装饰器期望作为参数处理一个异常列表。 你可以通过SanicException来捕捉它们! 装饰异常处理函数必须使用Request和Exception对象作为参数。
from sanic.response import text
from sanic.exceptions import NotFound
@app.exception(NotFound)
def ignore_404s(request, exception):
return text("Yep, I totally found the page: {}".format(request.url))
实用的异常
常用的异常:
- NotFound:当找不到请求的合适路由时调用。
- ServerError:当服务器内部出现问题时调用。如果在用户代码中出现异常,通常会发生这种情况。
有关要抛出的异常的完整列表,请参阅sanic.exceptions模块。