我有一个问题:
我的应用程序中存在 3 个模型:
class Cliente(models.Model):
#fields here ...
class Imovel(models.Model):
#more fields and..
dono = models.ForeignKey(Cliente)
class Captacao(models.Model):
#here, have the fields of others models (Cliente and Imovel)
我想通过模型“Captacao”填充模型“Cliente”和“Imovel”......我知道有 post_save,但我不知道如何做到这一点,将这些字段保存在每个相应的模型中。
谢谢,