0

嗨,我正在 Python 文件中使用 JSON:

import json
userData = '''[
{
    "userID" : "20",
    "devices" : {
        "360020000147343433313337" : "V33_03",
        "3f0026001747343438323536" : "Door_03",
        "170035001247343438323536" : "IR_06",
        "28004c000651353530373132" : "BED_17"
    }
},

]'''

info = json.loads(userData)

加载时出现此错误: json.decoder.JSONDecodeError: Expecting value:

或者有时当我添加一些东西时: json.decoder.JSONDecodeError: Expecting property name 括在双引号中:

4

4 回答 4

3

尝试使用ast模块

前任:

import ast
userData = '''[
{
    "userID" : "20",
    "devices" : {
        "360020000147343433313337" : "V33_03",
        "3f0026001747343438323536" : "Door_03",
        "170035001247343438323536" : "IR_06",
        "28004c000651353530373132" : "BED_17"
    }
},
]'''

info = ast.literal_eval(userData)
print(info)
于 2018-07-27T07:23:37.153 回答
1

看起来格式不对。

userData = '''[
{
    "userID" : "20",
    "devices" : {
        "360020000147343433313337" : "V33_03",
        "3f0026001747343438323536" : "Door_03",
        "170035001247343438323536" : "IR_06",
        "28004c000651353530373132" : "BED_17"
    }
},  <--- remove this ","

]'''

看我的测试:

>>> import json
>>> json.loads('[{"a":"b"}]')
[{u'a': u'b'}]
>>> json.loads('[{"a":"b"},]')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python27\lib\json\__init__.py", line 338, in loads
    return _default_decoder.decode(s)
  File "C:\Python27\lib\json\decoder.py", line 366, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File "C:\Python27\lib\json\decoder.py", line 384, in raw_decode
    raise ValueError("No JSON object could be decoded")
ValueError: No JSON object could be decoded
>>>
于 2018-07-27T07:29:19.387 回答
1

以供将来参考,以下如何获取 JSON 内容或获取一些垃圾邮件:

import requests


url = 'http://httpbin.org/status/200'
r = requests.get(url)

if 'json' in r.headers.get('Content-Type'):
    js = r.json()
else:
    print('Response content is not in JSON format.')
    js = 'spam'
于 2019-07-18T21:30:23.113 回答
0

使用您的示例,无需进一步理解: info = json.loads(json.dumps(userData))将起作用。

SO上有很多关于python多行字符串和JSON的帖子。理想情况下,您不会从字符串变量中加载字符串,这是您将看到的一般注释。

通过一些额外的解释,例如数据的来源和格式,我可以提供额外的帮助。

于 2018-07-27T07:44:33.567 回答