在Django和Tastypie中,我试图弄清楚如何正确处理多对多的“通过”关系,例如:https://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships
以下是我的示例模型:
class Ingredient(models.Model):
name = models.CharField(max_length=100)
description = models.TextField()
class RecipeIngredients(models.Model):
recipe = models.ForeignKey('Recipe')
ingredient = models.ForeignKey('Ingredient')
weight = models.IntegerField(null = True, blank = True)
class Recipe(models.Model):
title = models.CharField(max_length=100)
ingredients = models.ManyToManyField(Ingredient, related_name='ingredients', through='RecipeIngredients', null = True, blank = True)
现在我的api.py文件:
class IngredientResource(ModelResource):
ingredients = fields.ToOneField('RecipeResource', 'ingredients', full=True)
class Meta:
queryset = Ingredient.objects.all()
resource_name = "ingredients"
class RecipeIngredientResource(ModelResource):
ingredient = fields.ToOneField(IngredientResource, 'ingredients', full=True)
recipe = fields.ToOneField('RecipeResource', 'recipe', full=True)
class Meta:
queryset= RecipeIngredients.objects.all()
class RecipeResource(ModelResource):
ingredients = fields.ToManyField(RecipeIngredientResource, 'ingredients', full=True)
class Meta:
queryset = Recipe.objects.all()
resource_name = 'recipe'
我正在尝试将此代码基于此示例:http://pastebin.com/L7U5rKn9
不幸的是,使用此代码我收到此错误:
"error_message": "'Ingredient' object has no attribute 'recipe'"
有谁知道这里发生了什么?或者我如何在RecipeIngredientResource中包含成分的名称?谢谢!
编辑:
我可能自己发现了错误。 ToManyField应该针对Ingredient而不是RecipeIngredient。我会看看这是否能完成这项工作。
编辑:
新错误..任何想法? 对象''具有空属性'title',不允许使用默认值或空值。
答案 0 :(得分:3)
你提到了:
我可能自己发现了错误。 ToManyField应该针对Ingredient而不是RecipeIngredient。我会看看这是否有效。
虽然有更好的方法[Tastypie M2M] (http://blog.eugene-yeo.in/django-tastypie-manytomany-through.html)(旧博客离线:https://github.com/9gix/eugene-yeo.in/blob/master/content/web/django-tastiepie-m2m.rst)
简短摘要,我使用ToManyField
代替ToManyField
成分ThroughModel
。并将attribute
kwargs自定义为返回ThroughModel
Queryset的回调函数。
很久以前就提出了这个答案。不确定它是否仍然有用。
答案 1 :(得分:-2)
我和你有同样的问题。为了解决这个问题,我只是从API中删除了ToMany字段(就像在RecipeResource中一样)。这对我们有用,因为模型仍然具有manytomany字段(而不是API),您仍然可以通过查询中间模型来查询关系。