DRF提供了异常处理函数。
但工程中实际上需要有数据库异常,所以,需要重写exception_handler函数。
1 在GeneralTools目录下创建名为Exceptions.py文件(该文件在之前工程配置中已创建),内容如下:
from rest_framework.views import exception_handler as drf_exception_handler import logging from django.db import DatabaseError from redis.exceptions import RedisError from rest_framework.response import Response from rest_framework import status # 获取在配置文件中定义的logger,用来记录日志 logger = logging.getLogger('tongheng2') def exception_handler(exc, context): """ 自定义异常处理 :param exc: 异常 :param context: 抛出异常的上下文 :return: Response响应对象 """ # 调用drf框架原生的异常处理方法 response = drf_exception_handler(exc, context) if response is None: view = context['view'] if isinstance(exc, DatabaseError) or isinstance(exc, RedisError): # 数据库异常 logger.error('[%s] %s' % (view, exc)) response = Response({'message': '服务器内部错误'}, status=status.HTTP_507_INSUFFICIENT_STORAGE) return response
2 在工程配置文件中,配置EXCEPTION_HANDLER的路径指向上面创建的文件。
# REST配置 REST_FRAMEWORK = { # 异常处理(自定义异常) 'EXCEPTION_HANDLER': 'GeneralTools.Exceptions.exception_handler', }