作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 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/
我是一名优秀的程序员,十分优秀!