参考许多人的问题 可以通过把try和except的部分注解掉 然后执行的时候会出现TypeError: unbound method parse() must be called with HtmlParser instance as first argument (got str... 错误里面提到HtmlParser 出错原因应该是你没把 HtmlParser 给实例化 检查调度程序spider_main.py中的class SpiderMain里的def __init__(self): 发现 self.parser = html_parser.HtmlParser() 没有加括号