AttributeError Traceback (most recent call last) ~\AppData\Local\Temp/ipykernel_15340/867494765.py in <module> 72 73 #公司类型 ---> 74 company_type = i.select_one( 75 'div > div:nth-child(1) > a > div.iteminfo__line.iteminfo__line2 > div.iteminfo__line2__compdesc' 76 ).text AttributeError: 'NoneType' object has no attribute 'text'
时间: 2024-02-10 21:14:41 浏览: 279
iomap_32.rar_For Real_uc/CAN
这个错误可能是由于在使用 `select_one()` 方法时,没有找到符合选择器条件的元素,导致返回了 `None`。因为 `None` 对象没有 `text` 属性,所以出现了 `'NoneType' object has no attribute 'text'` 的错误。
你可以在使用 `select_one()` 方法前,先使用 `select()` 方法来检查是否有符合条件的元素存在,如果有,则再使用 `select_one()` 方法来选择元素,否则可以进行错误处理。例如:
```python
company_type_element = i.select('div > div:nth-child(1) > a > div.iteminfo__line.iteminfo__line2 > div.iteminfo__line2__compdesc')
if company_type_element:
company_type = company_type_element[0].text
else:
company_type = 'N/A'
```
这里先使用 `select()` 方法来获取符合条件的所有元素,然后判断列表中是否有元素存在,如果有,则使用 `select_one()` 方法来选择第一个元素并获取其文本内容,否则将 `company_type` 设置为 `'N/A'`。这样可以避免出现 `'NoneType' object has no attribute 'text'` 的错误。
阅读全文