摘要:
1.了解falsk异常处理 flask内部异常通过继承这个HTTPException类来处理 class HTTPException(Exception): """The base class for all HTTP exceptions. This exception can be called 阅读全文
摘要:
定义 from enum import Enum class StatusCode(Enum): """业务状态码定义""" @property def code(self): """获取业务状态码""" return self.value[0] @property def msg(self): " 阅读全文