python 使用 response.read() 接收 json 数据

1 import json
2  
3 result = response.read()
4 result.decode('utf-8')
5 jsonData = json.loads(result)
原文地址:https://www.cnblogs.com/wangjq19920210/p/10469448.html