gpt4 book ai didi

python - 在 python 中获取一个 JSON 对象

转载 作者:太空宇宙 更新时间:2023-11-04 07:43:06 25 4
gpt4 key购买 nike

通常我使用 Bottle 构建的网络服务返回 JSON 文件,这工作正常。但是,我有一个需要调用本地函数的异常。

这是我尝试做的:

import json
def getData():
return json.dumps({'data': someData })

def function():
try:
# Fail
except:
print getData()
print type(getData())
json.load(getData())

所以它打印:

{"data": "myData"}
<type 'str'>
[...]
AttributeError: 'str' object has no attribute 'read'

所以 json.dumps 给了我一个字符串。如何将其用作 JSON?

最佳答案

json.load 从文件对象加载 JSON。

json.loads 从字符串加载。这就是您想要的。

关于python - 在 python 中获取一个 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15144280/

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