看看我的代码的问题
import scrapyclass JcSpider(scrapy.Spider):
name = 'jc'
allowed_domains = ['baidu.com']
start_urls = ['https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&ch=&tn=88093251_33_hao_pg&bar=&wd=%E6%9C%BA%E8%BD%A6']
def parse(self, response):
node_list = response.xpath("//div[@class='result-op c-container new-pmd xpath-log']")
for node in node_list:
title = node.xpath("./h3/text()").extract()
print(title)
#pass
结果:Process finished with exit code 0
为什么没有结果 这玩意表示的是程序正常执行后退出
你看看你有没有调用函数
exit code 1 才是有异常 Daniel_Zhang 发表于 2020-12-27 15:36
这玩意表示的是程序正常执行后退出
你看看你有没有调用函数
我仿照有个代码写的 但我的运行不出来
调用函数不懂 因为你的JcSpider.parse方法没有调用啊,当然是退出
页:
[1]