私はり 发表于 2020-12-27 15:33:59

看看我的代码的问题

import scrapy


class 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
为什么没有结果

Daniel_Zhang 发表于 2020-12-27 15:36:23

这玩意表示的是程序正常执行后退出

你看看你有没有调用函数

exit code 1 才是有异常

私はり 发表于 2020-12-27 17:06:11

Daniel_Zhang 发表于 2020-12-27 15:36
这玩意表示的是程序正常执行后退出

你看看你有没有调用函数


我仿照有个代码写的 但我的运行不出来
调用函数不懂

2269099035 发表于 2020-12-29 14:39:24

因为你的JcSpider.parse方法没有调用啊,当然是退出
页: [1]
查看完整版本: 看看我的代码的问题