今天,在用python练习爬虫时,突然出现了出现‘AttributeError: ‘NoneType’ object has no attribute ‘find_all’’的错误。
分析:
article的类型是为‘NoneType’,它没有‘find_all’这个方法;而一般是使用‘bs4.BeautifulSoup’来使用‘find_all’这个方法,此时在想能否直接将‘NoneType’转为‘bs4.BeautifulSoup’,
但发现这样会报错。
再分析前面成功转换的代码,其转换前的状态是’str’类型,尝试着先把它转换为’str’类型。
后面,果然运行成功了!!!
(注:BeautifulSoup方法是通过前面from bs4 import BeautifulSoup导入的)
python运行时出现AttributeError:’NoneType‘ object has no attribute ’find_all‘的错误
最新推荐文章于 2024-08-13 20:35:10 发布