如何通过字段传递具有许多托词的Django妈妈模型的查询集

时间:2018-11-27 11:37:44

标签: django testing model-mommy

现在我有这样的产品型号

class Product(models.Model):
    attrs = models.ManyToMany('ProductAttribute',
    through='ProductAttributeValue')
    ...some fields

现在我想使用伪造者和模型妈妈创建一些伪造数据

喜欢

 [mommy.make(Product, title=ff.text(max_nb_chars=25), description=ff.text(max_nb_chars=80), categories=Category.objects.filter(depth=3), product_class=ProductClass.objects.first(), attributes=ProductAttribute.objects.all()) 
for _ in range(15)]

如何将ProductAttributeValue.objects.filter(..filters..)传递给m2m模型,mommy食谱或through字段中的任何内容

0 个答案:

没有答案