错误类型:AttributeError: 'list' object has no attribute 'xpath'
Posted wcymiracle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误类型:AttributeError: 'list' object has no attribute 'xpath'相关的知识,希望对你有一定的参考价值。
错误代码:
zoomE=html.xpath("//div[@id=‘Zoom‘]") cover=zoomE.xpath("//img/@src") print(cover)
zoomE是一个列表
正确代码:
zoomE=html.xpath("//div[@id=‘Zoom‘]")[0] cover=zoomE.xpath("//img/@src") print(cover)
以上是关于错误类型:AttributeError: 'list' object has no attribute 'xpath'的主要内容,如果未能解决你的问题,请参考以下文章