我在将我的一个模型转储到灯具时使用--natural选项,这样在部署时我不会遇到Content_typ ID问题。结果在这里:
{
"pk": 1,
"model": "seo.opportunitymetadatamodel",
"fields": {
"_content_type": [
"opportunity",
"jobopportunity"
],
"og_description": "",
"description": "",
"title": "test",
"keywords": "",
"og_title": "",
"heading": ""
}
}
但是当我尝试加载夹具时,我收到以下错误:
Problem installing fixture 'seo/fixtures/initial_data.json': Traceback (most recent call last):
File "/Users/xx/dev/envs/xx/lib/python2.6/site-packages/django/core/management/commands/loaddata.py", line 167, in handle
for obj in objects:
File "/Users/xx/dev/envs/xx/lib/python2.6/site-packages/django/core/serializers/json.py", line 38, in Deserializer
for obj in PythonDeserializer(simplejson.load(stream), **options):
File "/Users/xx/dev/envs/xx/lib/python2.6/site-packages/django/core/serializers/python.py", line 84, in Deserializer
Model = _get_model(d["model"])
TypeError: string indices must be integers, not str
似乎该方法不接受要加载的字符串。我错过了什么?
答案 0 :(得分:4)
我现在只能猜测,但在查看Django的源代码和您的错误消息后,我认为您的灯具的格式可能会被破坏。你发布的例子是文件的整个内容?如果是,那么我认为你需要把这个模型放在一个列表中,就像这样(注意外括号):
[
{
"pk": 1,
"model": "seo.opportunitymetadatamodel",
"fields": {
"_content_type": [
"opportunity",
"jobopportunity"
],
"og_description": "",
"description": "",
"title": "test",
"keywords": "",
"og_title": "",
"heading": ""
}
}
]
为什么呢?在Django成功解析了JSON数据之后,这些数据被传递给python反序列化器。这将按如下方式迭代数据:
82 for d in object_list:
83 # Look up the model and starting build a dict of data for it.
84 Model = _get_model(d["model"])
http://code.djangoproject.com/browser/django/trunk/django/core/serializers/python.py#L82
现在假设object_list
是一个json对象(相当于python的字典),迭代它只会得到密钥,在本例中为pk, model, field
。在第84行中,Django执行_get_model(d["model"])
,即使用字符串"model"
作为另一个字符串的索引,可能是pk
(这是object_list
中的第一个元素)。这是一个类型错误。
当object_list
是一个实际列表时,迭代它会给你字典,可以用字符串索引。