第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

類型錯(cuò)誤:不能混合 str 和非 str 參數(shù)

類型錯(cuò)誤:不能混合 str 和非 str 參數(shù)

MMMHUHU 2023-04-25 17:17:34
from scrapy import Spiderfrom scrapy.http import Requestclass CourseSpider(Spider):    name = 'course'    allowed_domains = ['coursera.org']    start_urls = ['https://coursera.org/about/partners']    def parse(self, response):        listings = response.xpath('//div[@class="rc-PartnerBox vertical-box"]')        for listing in listings:            title = listing.xpath('.//div[@class="partner-box-wrapper card-one-clicker flex-1"]/p').extract_first()            relative_url = listing.xpath('.//a/@href').extract_first()            absolute_url = response.urljoin(relative_url)            yield Request(response.urljoin(relative_url), callback = self.parse_listing,meta={'title':title,'absolute_url':absolute_url})    def parse_listing(self,response):        titles = response.meta.get('title')        absolute_url = response.meta.get('absolute_url')        titles_course =  response.xpath('//div[@class="name headline-1-text"]/text()').extract()        url_link = response.xpath('//div[@class="rc-Course"]/a/@href').extract()        abs_url = response.urljoin(url_link)        yield {'title':title,        'titles':title,        'absolute_url':absolute_url,        'titles_course':titles_course,        'abs_url':abs_url}但是,在通過(guò) cmd 運(yùn)行腳本時(shí)。我收到錯(cuò)誤。這些錯(cuò)誤表明我不能混合 str 和非 str 參數(shù),我對(duì)如何處理這個(gè)問(wèn)題感到困惑。任何幫助,將不勝感激。我嘗試添加 extract() 函數(shù),因?yàn)樗诹斜砣萜魃系囊恍┫惹暗?stackoverflow 問(wèn)題中被提及以消除該錯(cuò)誤,但是我的 xpath 沒(méi)有獲得所需的輸出。
查看完整描述

1 回答

?
LEATH

TA貢獻(xiàn)1936條經(jīng)驗(yàn) 獲得超7個(gè)贊

您正在尋找.extract_first()或它的新名稱.get(),因?yàn)樗?code>.extract()會(huì)生成一個(gè)列表,不能在其中使用.urljoin



查看完整回答
反對(duì) 回復(fù) 2023-04-25
  • 1 回答
  • 0 關(guān)注
  • 126 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)