批量创建相关对象

时间:2018-05-22 20:36:23

标签: django django-models django-rest-framework django-related-manager

我的应用程序中有2个模型 -

在models / parent.py中我有 -

 from django.db import models
 class Parent(models.Model): 
       class Meta:
          db_table = "parent_table"
       start_date = models.DateField()
       end_date = models.DateField()

在models / child.py中我有 -

from django.db import models
from models.parent import Parent
class Child(models.Model): 
   class Meta:
      db_table = "child_table"
   some_ref = models.ForeignField(Parent)

我们可以使用父表引用作为 -

单独插入子表
self.child_set.create(**args)

有没有办法可以批量插入相关表格,正常bulk_create

0 个答案:

没有答案