我知道我可以使用 simplejson 在 python 中检索这样的总单位。
jsondata = json.loads(r.text)
jsondata['data']['total_units']
但是我该如何继续获取状态字段的数据呢?
{
status: 'ok',
data: {
total_units: 1,
unit_info: [{
type: 'car',
status: 'Blue car',
id: '20513'
}]
}
}