1
我有一個父和子類存放在父模型兒童模型的計數
class parent(models.model):
countChidlren = #count of the total children of this parent
class childeren(models.model):
parent = models.ForeignKey(parent)
我想在父childeren的計數,但沒有對如何去做任何想法。?