6

我想为Comment具有GenericForeignKey关系的模型()创建数据迁移。我的模型是根据djangocontenttypes文档制作的。

楷模:

...
class NiceMeme(models.Model):
    """
        Example model.
    """

    name = models.CharField(max_length=140)
    image = models.ImageField(upload_to=get_path_to_store_nice_meme_images)


class Comment(models.Model):
    """
        Model to add comments to any other (non abstract) model.
    """
    ...
    user = models.ForeignKey(ExtendedUser)
    content = models.CharField(max_length=140)
    content_type = models.ForeignKey(ContentType)
    object_pk = models.PositiveIntegerField()
    content_object = GenericForeignKey('content_type', 'object_pk')

数据迁移

...
def create_comment(apps, schema_editor):
    ...
    nice_meme = NiceMeme.objects.create(name='Nice nice meme')
    Comment.objects.create(
        user=user,
        content='Gott ist tot',
        poster_username='Friedrich',
        content_object=nice_meme
    )

...
operations = [
    migrations.RunPython(create_comment)
]

当我跑步时,./manage.py migrate我得到:

TypeError: 'content_object' is an invalid keyword argument for this function

我不得不说我使用create_comment了与视图内部相同的代码并且运行良好。

我使用 django 1.7.7。我不使用南方。

编辑: 我试过尚王的回答。

Comment.objects.create(
    user=user,
    content='Gott ist tot', 
    poster_username='Friedrich',
    content_type=ContentType.objects.get_for_model(nice_meme),
    object_pk=nice_meme.id
) 

也不工作:

ValueError: Cannot assign "<ContentType: nice meme>": "Comment.content_type"  must be a "ContentType" instance.
4

3 回答 3

16

正如我所说,我也遇到过同样的问题,一位同事帮助我解决了这个问题:

你真的需要设置content_typeobject_pk正如+Shang Wang指出的那样,但ContentType必须使用加载apps.get_model而不是直接导入它。

所以使用这个:

ContentType = apps.get_model('contenttypes', 'ContentType')

在您的迁移方法中,一切都应该工作:)

def create_comment(apps, schema_editor):
    ...
    ContentType = apps.get_model('contenttypes', 'ContentType')
    nice_meme = NiceMeme.objects.create(name='Nice nice meme')
    Comment.objects.create(
        user=user,
        content='Gott ist tot',
        poster_username='Friedrich',
        content_type=ContentType.objects.get_for_model(nice_meme),
        object_pk=nice_meme.id
    )
于 2015-11-04T16:29:40.467 回答
0

我有同样的问题,解决方案是获取具有小写模型名称的 ContentType 对象:

content=ContentType.objects.get(app_label='appname', model='modelname')

对于这个问题:

def create_comment(apps, schema_editor):
    ContentType = apps.get_model('contenttypes', 'ContentType')    
    nice_meme = NiceMeme.objects.create(name='Nice nice meme')

    Comment.objects.create(
        user=user,
        content=ContentType.objects.get(app_label='appname', model='nicememe')
        poster_username='Friedrich',
        content_object=nice_meme
    )
于 2017-10-20T10:43:46.867 回答
0

请试试这个:

from django.contrib.contenttypes.models import ContentType

nice_meme = NiceMeme.objects.create(name='Nice nice meme')
Comment.objects.create(user=user,
                       content='Gott ist tot', 
                       poster_username='Friedrich',
                       content_type=ContentType.objects.get_for_model(nice_meme),
                       object_pk=nice_meme.id)

我认为问题在于您的content_object字段只是Comment模型对象快速访问外键的一种简单方法,例如:

obj = some_comment.content_object

它不是一个实际的字段,而是 2 个字段的组合,因此您不能直接将一个NiceMeme对象分配给它。

编辑:

听起来您正在使用 South,这里描述了一个问题该解决方案在另一个 SO线程中得到解答。听起来解决方案是冻结与迁移相关的任何模型:

python manage.py schemamigration --auto yourapp --freeze contenttypes

您可能需要冻结更多应用程序:

python manage.py schemamigration --auto yourapp --freeze contenttypes --freeze someotherapp ...

我以前从未遇到过这个问题,所以请阅读原帖了解更多详细信息,希望对您有所帮助。

于 2015-10-31T00:56:51.920 回答