现在我有这样的产品型号
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
字段中的任何内容