Django对象没有属性'all'

时间:2014-11-11 15:19:19

标签: django django-models

我对外键字段的查询返回了以下错误。

'Category' object has no attribute 'all'

这是我的问题:

p = get_object_or_404(Product, slug=product_slug)
categories = p.categories.all()

基于这些模型:

class Category(models.Model):
  name = models.CharField(max_length=50)
  slug = models.SlugField(max_length=50,  unique=True, help_text='Unique value from product page URL, created from name')
  is_active = models.BooleanField(default=True)
  created_at = models.DateTimeField(auto_now_add=True)
  updated_at = models.DateTimeField(auto_now=True)

class Product(models.Model):
  name = models.CharField(max_length=255, unique=True)
  slug = models.SlugField(max_length=255, unique=True, help_text='Unique value for product page URL, created from name')
  created_at = models.DateTimeField(auto_now_add=True)
  updated_at = models.DateTimeField(auto_now=True)
categories = models.ForeignKey(Category, null=True)

我理解这个问题是外键只引用一个模型的结果;但是,当我尝试运行时:

categories = p.categories

我返回以下错误:

'Category' object is not iterable

我不确定如何解决此问题。

1 个答案:

答案 0 :(得分:1)

您应该为您的人际关系使用不同的方法。我看到你的代码的方式你应该有一个ManytoMany关系,因为一个产品可能属于N个类别,一个类别可能有N个产品附加到它。

选中此ManyToManyField

无论如何,请尝试在Product模型中更改此内容:

categories = models.ManyToManyField(Category, null=True)