Scrapy 我们怎样才能刮取输入后显示的数据,但url不变?(使用刮取)

Scrapy 我们怎样才能刮取输入后显示的数据,但url不变?(使用刮取),scrapy,Scrapy,(在此URL中,只有在选择某个内容并单击过滤器后才会显示数据,因此我认为此代码显示的是数据Black是否有任何方法可以通过输入选项提取数据) import scrapy class NepseSpider(scrapy.Spider): name = 'nepse' start_urls = ['http://www.nepalstock.com/stockWisePrices'] def parse(self, response): yie

(在此URL中,只有在选择某个内容并单击过滤器后才会显示数据,因此我认为此代码显示的是数据Black是否有任何方法可以通过输入选项提取数据)

import scrapy

class NepseSpider(scrapy.Spider):
    name = 'nepse'
    
    start_urls = ['http://www.nepalstock.com/stockWisePrices']

    def parse(self, response):
        yield response.css("tr:nth-child(5) td , .unique+ tr td , td+ td::text").getall()