import json
result = response.read()
result.decode('utf-8')
jsonData = json.loads(result)
python使用response.read()接收json数据
最新推荐文章于 2025-07-04 16:59:50 发布
import json
result = response.read()
result.decode('utf-8')
jsonData = json.loads(result)