当前位置:   article > 正文

Django自定义封装全局异常_django全局异常处理器

django全局异常处理器

Django自定义封装全局异常

定义异常处理类

# utils/common_exception.py
from rest_framework.views import exception_handler as drf_exception_handler
from rest_framework.response import Response
from .common_logger import logger
from rest_framework.exceptions import ValidationError, APIException, AuthenticationFailed

# 自定义的异常类,可以在其他地方主动抛出
class NoPermissionException(Exception):
    pass

def APIException(exc, context):
    # 获取异常信息上下文
    request = context['request']
    view = context['view']
    ip = request.META['REMOTE_ADDR']
    path = request.get_full_path()
    method = request.method
    user_id = request.user.id or '[匿名用户]'
    logger.error(f"""
    操作出错:{str(exc)}, 请求方式:{method}, 视图函数{view}, ip:{ip}, 访问路径:{path}, 用户:{user_id}
    """)

    response = drf_exception_handler(exc, context)

    # 如果response存在则说明是drf的异常
    if response:
        logger.error(str(exc))
        err = f'DRF异常:{response.data}'
        code = 900
        
	# 如果response不存在则说明是函数内部异常,需要额外细分
    else:
     	# 这里仅做两个示例,可以根据实际情况自行添加
        if isinstance(exc, NameError):
            err = f'使用未引入的变量:{type(exc).__name__, str(exc)}'
            code = 902

        elif isinstance(exc, ZeroDivisionError):
            err = f'不能除以0:{type(exc).__name__, str(exc)}'
            code = 903

        else:
            err = f'{type(exc).__name__, str(exc)}'
            code = 901

    return Response({'code': code, 'msg': err})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46

注册到settings

REST_FRAMEWORK = {
    'EXCEPTION_HANDLER': 'utils.common_exception.APIException',
}
  • 1
  • 2
  • 3
'
运行

视图抛出异常示例

from rest_framework.views import APIView
from rest_framework.exceptions import ValidationError, APIException, AuthenticationFailed
from utils.common_exception import NoPermissionException

class ExceptionViews1(APIView):
    def get(self,request):
        raise NoPermissionException('我是自定义异常')

class ExceptionViews2(APIView):
    def get(self,request):
        raise APIException('我是DRF异常')

class ExceptionViews3(APIView):
    def get(self,request):
        4/0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

image-20240510165552510
image-20240510164249393

image-20240510165322053

image-20240510164416940

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/979577
推荐阅读
相关标签
  

闽ICP备14008679号