📜  django 在保存类的同时保存另一个类数据 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:34.875000             🧑  作者: Mango

代码示例1
class Visit(models.Mode):
     attribute = 
     etc etc etc

    def save(self, *args, **kwargs):
        # do something with Invoice here
        return super().save(*args, **kwargs)