찾다

 >  Q&A  >  본문

python - 抓取下的unicode编码转urlcode

    articles=response.css("#content > article:nth-child(5) p")
    sgg="";
    for item in articles:
        sgg = sgg+item.extract()
    data=urllib.urlencode({ 'title':title ,"describle":describle,"article":sgg} );

我想把sgg+item.extract() 转换为字符串.转换为urlcode.发送出去.

不过我碰到问题是这个

articles=response.css("#content > article:nth-child(5) p")

    for item in articles:  print (  type(item.extract()) )

输出
<type 'unicode'>

所以如果

data = {

'title': title,
'describle': describle,
'article': article

}

print urllib.urlencode(data);

就报错了

PHP中文网PHP中文网2770일 전1012

모든 응답(1)나는 대답할 것이다

  • 高洛峰

    高洛峰2017-04-17 17:58:29

    효율적이라는 말이 무슨 뜻인지 모르겠습니다. 좀 더 읽기 쉬운 코드를 게시해 주세요

    으아아아

    이 코드를 다시 비교해 보세요

    으아아아

    회신하다
    0
  • 취소회신하다