Django Book 翻译
菜单>:
TOC
返回
原文:
Bugs slip by even the best programmers, but *exception middleware* can help squash them. If a view function raises an exception, control passes to the Exception middleware. If this middleware does not return an ``HttpResponse`` , the exception is re-raised.
翻译:
即便是最棒的程序员也会有出错的时候, 这个时候 *异常处理中间件(exception middleware)* 可以帮你的大忙。如果一个视图函数抛出异常,控制器会传递给异常处理中间件处理。如果这个 中间件没有返回 ``HttpResponse`` ,意味着它不能处理这个异常,这个异常将会再次抛出。
备注:
译者: