码迷,mamicode.com
首页 > Windows程序 > 详细

Django API 自定义状态码

时间:2019-12-21 20:20:18      阅读:431      评论:0      收藏:0      [点我收藏+]

标签:ase   color   one   __init__   api   django   djang   token   nbsp   

class BaseResponse(object):

    def __init__(self):
        self.code = 1000
        self.data = None
        self.error = None

    @property
    def dict(self):
        return self.__dict__


class TokenResponse(BaseResponse):
    def __init__(self):
        super(BaseResponse).__init__()
        self.code = 1000
        self.token = None

 

class PricePolicyIncalid(Exception):
    def __init__(self, msg):
        self.msg = msg

Django API 自定义状态码

标签:ase   color   one   __init__   api   django   djang   token   nbsp   

原文地址:https://www.cnblogs.com/Rivend/p/12077808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!