Python 'str' 对象没有属性 'read'

新手上路,请多包涵

Python 3.3.2 导入 json 和 urllib.request

杰森

[{"link":"www.google.com","orderid":"100000222"},
{"link":"www.google.com","orderid":"100000222"},
{"link":"www.google.com","orderid":"100000222"}]

打印(响应。信息())

 Date: Sun, 20 Oct 2013 07:06:51 GMT
Server: Apache
X-Powered-By: PHP/5.4.12
Content-Length: 145
Connection: close
Content-Type: application/json

代码

url = "http://www.Link.com"
    request = urllib.request.Request(url)
    request.add_header('User-Agent','Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)')
    request.add_header('Content-Type','application/json')
    response = urllib.request.urlopen(request)

    decodedRes = response.read().decode('utf-8')
    json_object = json.load(decodedRes)

以下是我的代码错误

Traceback (most recent call last):
  File "C:\Users\Jonathan\Desktop\python.py", line 57, in <module>
    checkLink()
  File "C:\Users\Jonathan\Desktop\python.py", line 50, in checkLink
    json_object = json.load(decodedRes)
  File "C:\Python33\lib\json__init__.py", line 271, in load
    return loads(fp.read(),
AttributeError: 'str' object has no attribute 'read'
>>> .

知道我该如何解决这个问题吗?

原文由 CodeGuru 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 775
2 个回答

使用 json.loads 而不是 json.load

 json.loads(decodedRes)


 >>> import json
>>> json.load('{"a": 1}')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python27\lib\json__init__.py", line 286, in load
    return loads(fp.read(),
AttributeError: 'str' object has no attribute 'read'
>>> json.loads('{"a": 1}')
{u'a': 1}


或者,您可以将响应对象传递给 json.load

 ## decodedRes = response.read().decode('utf-8')
json_object = json.load(response)

原文由 falsetru 发布,翻译遵循 CC BY-SA 3.0 许可协议

以下代码将 json 文件加载到文档中。文档将具有 dict 类型的值。

 file_name = "my_file.json"
with open(file_name, 'r') as f:
    document =  json.loads(f.read())

原文由 Manikandan 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题