爬蟲時我get到的內容content是這樣的b{"title":"u5173u6ce8","card_type_name":"u5173u6ce8"}, 請教如何把編碼轉換成漢字
我先查到一個方法follow_text = follow.text.encode('utf-8').decode('unicode-escape'),
第一個response可以這樣轉換,然而follow.text轉換會出現'utf-8' codec can' t encode characters in position 2809-2810,
然後嘗試改為text[:2809],不會報錯,改為text[2811:]依然有錯
使用print(follow.text[2800:2810] )輸出為'_image_url',不知道為什麼轉換不成功
想問一下這個是什麼問題,或者有沒有什麼其他辦法把我get到的內容轉換一下
如果
follow.text
本身是 str(unicode) 的话,encode('utf8') 回去没有任何意义,直接decode('unicode-escape')
就行如果
follow.text
是 bytes 的话,那就可以选择先 decode('utf8') ,再decode('unicode-escape')
(假設你問題中正確的編碼為 utf8 )
你直接使用json進行解碼不就好了