繁体   English   中英

如何在Django中的ContentType外键上使用get_by_natural_key()加载数据夹具?

[英]How to load a data fixture with get_by_natural_key() on ContentType foreign key in Django?

我在为使用ContentType外键的模型加载外部数据夹具时遇到问题。

我在模型中使用经理,就像文档所说的那样。 不幸的是,尽管文档讨论了ContentType外键上的get_by_natural_key方法的重要性,但随后它启动了另一个示例。 我很难弄清经理的模样。 我最好的猜测是再次使用get_by_natural_key并分配app_labelmodel查找,但是我可能会离开。

# models.py 
from django.db import models 
from django.contrib.contenttypes.models import ContentType 
from django.utils.translation import ugettext_lazy as _ 

class InlineTypeManager(models.Manager): 
    def get_by_natural_key(self, title, app_label, model): 
        return self.get(title=title, content_type=ContentType.objects.get_by_natural_key(app_label=content_type__name, model=content_type__id)) 

class InlineType(models.Model): 
    title = models.CharField(_("title"), max_length=255) 
    content_type = models.ForeignKey(ContentType, limit_choices_to={"model__in": ("Link", "Document", "Image", "Audio", "Video", "MediaSet", "Flash", "Testimonial")}) 

    objects = InlineTypeManager() 

    class Meta: 
        ordering  = ["title"] 
        verbose_name = _("inline type") 
        verbose_name_plural = _("inline types") 

    def __unicode__(self): 
        return u"%s" % (self.title) 

https://docs.djangoproject.com/en/dev/topics/serialization/#natural-keys

我的initial_data.json

[
    {
        "model": "inlines.inlinetype",
        "pk": 1,
        "fields": {
            "title": "Image",
            "content_type": "image"
        }
    }, {
        "model": "inlines.inlinetype",
        "pk": 2,
        "fields": {
            "title": "Video",
            "content_type": "video"
        }
    }
]

当我loaddata JSON数据时,收到错误消息:

DeserializationError: [u"'image' value must be an integer."] 

get_by_natural_key是要在“人类友好的”查找中加载非整数字段,因为JSON中的硬编码ID由于其不可预测性是一个坏主意,所以我猜我的经理失败了。 还是应该使用get_for_model() / get_for_models()

Django中的自然键是

外键和多对多关系的默认序列化策略是序列化关系中对象的主键的值。

对于那些在转储目标中不会作为ForeignKey / ManyToManyField出现的模型,您不需要在Manager中实现诸如natural_key和get_by_natural_key之类的方法。 因此,您可以删除InlineTypeManager()行。

另外,转储的initial_data.json中content_type字段的值不正确。 Django仅将列表视为自然键,像“ image”这样的字符串仍被视为代理键,并且由于无法成功强制转换为int而失败。 正确的ContentType转储看起来像

from django.contrib.contenttypes.models import ContentType
from django.utils import simplejson

>>> simplejson.dumps(ContentType.objects.get(model='user').natural_key())
'["auth", "user"]'

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM