unicode' object has no attribute 'read' json


json.load(jsondata)
报错:unicode' object has no attribute 'read' json

改为:

json.loads(jsondata)
ok ~

你可能感兴趣的:(django)