AttributeError:“ManyRelatedManager”对象没有“添加”属性?我确实喜欢 django 网站,但出现此错误

Posted

技术标签:

【中文标题】AttributeError:“ManyRelatedManager”对象没有“添加”属性?我确实喜欢 django 网站,但出现此错误【英文标题】:AttributeError: 'ManyRelatedManager' object has no attribute 'add'? I do like in django website but got this error 【发布时间】:2011-12-27 02:30:54 【问题描述】:
for item in data:
    category_id = item['category_id']
    del item['category_id']

    category = Category.objects.get(pk=category_id)

    code = item['code']

    try:
        article = Article.objects.get(pk=code)
    except:
        article = Article(**item)
        article.save()

    # at this point I have the article & category, but the next
    # statement throws me an error:
    category.articles.add(article)
    category.save()

错误是:

   AttributeError: 'ManyRelatedManager' object has no attribute 'add'

【问题讨论】:

您使用的是直通模型吗?如果是这样,.add 和 .create 将不起作用。 使用category.articles.set(category.articles.all() | article) 适用于我的场景。 【参考方案1】:

JamesO 是正确的 - 看起来您的 Category.articles 字段具有直通关系。假设您的模型至少类似以下

class Article(models.Model):
    name = models.CharField(max_length=128)

class Category(models.Model):
    name = models.CharField(max_length=128)
    articles = models.ManyToManyField(Article, through='Membership')

class Membership(models.Model):
    article = models.ForeignKey(Article)
    category = models.ForeignKey(Category)
    author = models.CharField()

然后要将Article 添加到Category,您必须

m = Membership(article=article, category=category, author="Dan TM")
m.save()

注意 - 我们无法确定 through 字段的名称,所以 Membership 是一个猜测,灵感来自 django docs

【讨论】:

以上是关于AttributeError:“ManyRelatedManager”对象没有“添加”属性?我确实喜欢 django 网站,但出现此错误的主要内容,如果未能解决你的问题,请参考以下文章

AttributeError:“字节”对象没有属性“告诉”

AttributeError: 'RDD' 对象没有属性 'show'

AttributeError:“NumpyArrayIterator”对象没有属性“类”

AttributeError:模块 'dbus' 没有属性 'lowlevel'

AttributeError:模块'keras'没有属性'initializers'

AttributeError:“会话”对象没有属性“会话”