soup.find().find().find()对不对
title_node = soup.find('div', class_="fgl_lp_info").find("h1").find("a")
res_data['title'] = title_node.get_text()
运行结果如下:
AttributeError: 'NoneType' object has no attribute 'get_text'
是少导入模块了吗???我导入了Beautifulsoup和urlparse