我需要在应用程序Question中执行模型Answer的数据迁移。在该脚本中有一个依赖项,因此我需要在应用程序Journal中创建模型Chapter的实例。因此,我将其编码如下:
def forwards(self, orm):
for answer_object in orm.Answer.objects.all():
#This Works.
blog, is_created = orm['blog.Post'].objects.get_or_create(title=answer_object.answer[:100])
blog.save()
#This DOES NOT work
chapter, is_created = orm['journal.Chapter'].objects.get_or_create(content_object=blog)
chapter.save()
#cleanup task, not relevant to this question below
answer_object.chapter_ptr = chapter
answer_object.save()
但正如预期的那样,这会在“ orm['journal.Chapter'].objects.get_or_create(content_object=blog)” 上引发错误,说
django.core.exceptions.FieldError: Cannot resolve keyword 'content_object' into field.
这可能是由于 content_object 是 GenericForeignKey,因此不允许某些操作。但我也尝试了其他替代方法来创建“章节”对象,例如,
chapter = orm['journal.Chapter'](content_object=blog)
ERROR > TypeError: 'content_object' is an invalid keyword argument for this function
和
chapter = orm.journal.Chapter(content_object=blog)
ERROR > AttributeError: The model 'journal' from the app 'questions' is not available in this migration. (Did you use orm.ModelName, not orm['app.ModelName']?)
那么我哪里错了?任何指针表示赞赏。谢谢。
更新
因此,由于我之前的方法失败了,我尝试了一种新的策略。在上面的代码中实例化失败的模型,即Journal应用程序中的章节,我决定为此创建一个数据迁移。我还确定了我在定义中所指的模型。现在这应该是直截了当的,我想。我的转发代码如下 ---freeze
forwards
def forwards(self, orm):
for answer_object in orm['questions.Answer'].objects.all():
#Works, AGAIN!
blog, is_created = orm['blog.Post'].objects.get_or_create(title=answer_object.answer[:100])
blog.save()
# DOES NOT WORK, AGAIN!
chapter = orm.Chapter(rank=1, content_object=blog)
chapter.save()
我会认为现在因为我正在创建主题应用程序(Journal )中存在的模型( Chapter )的实例,所以一切都应该解决。但我得到了同样的错误。
TypeError: 'content_object' is an invalid keyword argument for this function
它在同一点失败,即“content_object”。如果可能有帮助,我将在模型定义下方发布。
class Chapter(models.Model):
rank = models.IntegerField()
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey()
更新 2 想补充一点,这些转发方法中涉及的所有模型,即 - 博客、章节、问题;在 South 的 schemamigration 创建的 00n_*.py 文件中完全定义。