gpt4 book ai didi

python - Python解析JSON : how do I get has_key() working again after a change of format?

转载 作者:行者123 更新时间:2023-11-28 19:50:03 25 4
gpt4 key购买 nike

我有以下 Python 代码块:

data = json.loads(line)
if data.has_key('derivedFrom'):
dFin = data['derivedFrom']
if dFin.has_key('derivedIds'):

这过去在像这样的 JSON block 上工作得很好:

"derivedFrom": {"source": "FOO", "model": "BAR", "derivedIds": ["123456"]}

现在格式改为:

"derivedFrom": "{\"source\": \"FOO.\", \"model\": \"BAR\", \"derivedIds\": [\"123456\"]

因此 Python block 中的最后一行抛出以下异常:

'unicode' object has no attribute 'has_key'

有没有办法预处理 JSON 使 has_key 再次工作?

最佳答案

"{\"source\": \"FOO.\", \"model\": ...

是 JSON 字符串文字中的 JSON 对象。要获取内部 JSON 的属性,您必须再次对其进行解码。

data = json.loads(line)
if 'derivedFrom' in data:
dFin = json.loads(data['derivedFrom'])
if 'derivedIds' in dFin:
....

JSON-in-JSON 通常是一个错误,因为很少需要它 - 是什么产生了这个输出,它需要修复吗?

关于python - Python解析JSON : how do I get has_key() working again after a change of format?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13976060/

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