gpt4 book ai didi

python - 尝试在 Django 中使用 Content_type 自然键加载固定装置时出现类型错误

转载 作者:太空狗 更新时间:2023-10-30 01:17:22 26 4
gpt4 key购买 nike

我在将我的一个模型转储到固定装置时使用了 --natural 选项,这样我在部署时就不会遇到 Content_typ ID 问题。结果在这里:

{
"pk": 1,
"model": "seo.opportunitymetadatamodel",
"fields": {
"_content_type": [
"opportunity",
"jobopportunity"
],
"og_description": "",
"description": "",
"title": "test",
"keywords": "",
"og_title": "",
"heading": ""
}
}

但是当我尝试加载 fixture 时,出现以下错误:

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

似乎该方法不接受要加载的字符串。我错过了什么?

最佳答案

我现在只能猜测,但在查看 Django 的源代码和您的错误消息后,我认为您的 fixture 格式可能已损坏。您发布的示例是文件的全部内容吗?如果是,那么我认为您需要将该模型放入列表中,如下所示(注意外括号):

[
{
"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 是一个实际的列表时,迭代它会得到字典,可以用字符串索引。

关于python - 尝试在 Django 中使用 Content_type 自然键加载固定装置时出现类型错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4935227/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com