unicode' object has no attribute 'read' json

发表于 : 2018-01-01   · CC BY-NC-SA 4.0 ·   2463 人浏览
json.load(jsondata)

报错:unicode' object has no attribute 'read' json
改为:

json.loads(jsondata)

ok~

Python