station_trs = station_table.find_all('tr')[1:] AttributeError: 'NoneType' object has no attribute 'find_all'报错应该如何解决
时间: 2023-12-01 11:05:10 浏览: 105
Trs-was.rar_TRS WCM_huntbsy_trs_trs wcm
5星 · 资源好评率100%
这个错误说明 `station_table` 的值为 `None`,即没有找到相应的元素。因此,可以检查一下 `station_table` 的值是否正确,或者是否需要改变查找元素的方式。也可以在代码中加入一些判断语句,确保找到的元素不为空再进行后续操作,例如:
```
station_table = soup.find('table', {'class': 'station'})
if station_table is not None:
station_trs = station_table.find_all('tr')[1:]
# 进行后续操作
else:
print('未找到相应的元素')
```
阅读全文