AttributeError: объект «ManyRelatedManager» не имеет атрибута «добавить»? Мне нравится веб-сайт django, но я получил эту ошибку

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'
40
задан georgebrock 30 May 2012 в 12:39
поделиться