接口返回的json格式转dict格式
a = r.json()b = json.load(a)
AttributeError: 'dict' object has no attribute 'read'
a=r.json()a现在就属于dict格式,不需要再转换,直接用就行了