在捕获异常时,应该尽可能指定特定的异常,而不是只使用 except
语句。
比如说,except
语句会捕获 KeyboardInterrupt
和 SystemExit
异常,但 KeyboardInterrupt
可能是我们通过 Ctrl + C
主动触发的,显然是不希望被捕获的。
这样做会影响我们对异常的判断。
如果实在不知道是什么异常,至少要这样使用:except Exception
。
再举一个例子:
try:
user = User.objects.get(pk=user_id)
user.send_mail('Hello world')
except:
logger.error('An error occurred!')
这样捕获异常显然是不好的,应该采用下面这样的方式进行优化。
try:
user = User.objects.get(pk=user_id)
user.send_mail('Hello world')
except User.DoesNotExist:
logger.error('The user does not exist with that ID')
推荐阅读:
网友评论