zoukankan      html  css  js  c++  java
  • 0031 DRF框架开发(18 异常Exceptions)

      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',
    
    }
    
  • 相关阅读:
    Nginx lingering_close延迟关闭
    Nginx 减少关闭连接的time_wait端口数量
    Tcp协议的keepalive功能
    Nginx 慢启动与拥塞窗口
    Nginx 优化缓冲区与传输效率
    linux 目录分类与文件操作
    Nginx 滑动窗口与缓冲区
    python 关键字yield
    模块与包
    面向对象
  • 原文地址:https://www.cnblogs.com/dorian/p/12383557.html
Copyright © 2011-2022 走看看