nonetype object has no attribute find_all
时间: 2023-04-28 17:02:10 浏览: 350
多线程爬虫出现报错AttributeError: ‘NoneType’ object has no attribute ‘xpath’
这个错误提示意思是:NoneType对象没有find_all属性。通常是因为在一个None对象上调用了find_all方法,而不是在一个BeautifulSoup对象上调用。要解决这个问题,需要检查代码中是否正确地初始化了BeautifulSoup对象,并且在调用find_all方法时确保对象不是None。
阅读全文