标签:查询 方法 nta work ret color repr class name
在序列化类中重写to_representation(self,instance)方法,这个是返回json对象的方法,返回的是一个待序列化的对象,可以直接对这个类进行定制,有关关联查询也可以在这里进行定制,例如
def to_representation(self, instance): res = super().to_representation(instance=instance) res["gitGroup"] = {"name": instance.gitGroup.name} res["project"] = {"name": instance.project.name} res["project2"] = instance.project.name return res
标签:查询 方法 nta work ret color repr class name
原文地址:https://www.cnblogs.com/wuxie1989/p/10876956.html