使用 BeautifulSoup 查找页面中的所有选项时出现以下 Python 错误:
for item in soup.find(id="start_dateid").find_all('option'):
AttributeError: 'NoneType' object has no attribute 'find_all'
问题是当页面没有id="start_dateid"时,会产生错误:AttributeError: 'NoneType' object has no attribute 'find_all'
如何防止这个错误?