class c(models.Model): f = models.ManyToManyField( 'self', blank=True, null=True, related_name='child_set' )
我可以 :
c.objects.get(pk="1").f
但是我如何得到'_set'?
c.objects.get(pk="1").child_set
不工作
我需要这个:
{name:A,parent:[]}
{name:B,parent:[A]}
{name:C,parent:[A,B]}
C.parent.all() == [A,B]
A.parent_set.all() == [B,C]