7

在 Django 和 Tastypie 中,我试图弄清楚如何正确处理多对多“通过”关系,就像在这里找到的那​​样:https ://docs.djangoproject.com/en/dev/topics/db/models/#多对多关系的额外字段

这是我的示例模型:

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 应该指向成分而不是配方成分。我会看看这是否有效。

编辑:

新错误..有什么想法吗?对象 '' 有一个空属性 'title' 并且不允许使用默认值或空值。

4

2 回答 2

3

你提到:

我可能自己发现了错误。ToManyField 应该指向成分而不是配方成分。我会看看这是否有效。

虽然 [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,我没有使用 to Ingredients,而是使用ToManyFieldThroughModel. 并将 kwargs自定义为attribute返回ThroughModelQueryset 的回调函数。

更新(2014 年 4 月)

这个答案是很久以前的。不确定它是否仍然有用。

于 2012-12-03T18:21:48.637 回答
-2

我和你有同样的问题。为了解决这个问题,我只是从 API 中删除了 ToMany 字段(如在 RecipeResource 中)。这对我们有用,因为模型仍然有 manytomany 字段(只是没有 API),您仍然可以通过查询中间模型来查询关系。

于 2012-06-05T20:01:28.363 回答