xpath 의 extract ()

  • area_href = area. xpath ("/ map [@ name = 'cnMap'] / area / text ()") 는 selectorList 대상 을 되 돌려 줍 니 다.http://scrapy-chs.readthedocs.io/zh_CN/0.24/topics/selectors.html#selectorlist
     SelectorList      list     ,          :
     xpath(query)
     css(query)
     extract()
     re()
     __nonzero__()
    
  • area_href = area. xpath ("/ map [@ name = 'cnMap'] / area / text ()"). extract () 는 추출 할 내용
  • 을 목록 으로 되 돌려 줍 니 다.
  • area_href = area.xpath("//map[@name='cnMap']/area/text()").extract()[0] area_href = area. xpath ("/ map [@ name = 'cnMap'] / area / text ()" [0]. extract () 는 2 중 list 의 첫 번 째 요소 (str) 를 되 돌려 줍 니 다 (list 가 비어 있 으 면 이상 을 던 집 니 다)
  • area_href = area. xpath ("/ map [@ name = 'cnMap'] / area / text ()" [0]. extract () [0] 3 에서 돌아 온 str 의 첫 번 째 문자
  • 를 되 돌려 줍 니 다.

    좋은 웹페이지 즐겨찾기