您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關python中cookie中文亂碼的解決方法的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
python中直接設置與獲取cookie時,會出現編碼錯誤。
(1)在設置cookie時沒有考慮編碼問題,例如書寫的格式為:
response.set_cookie("favorite_color",request.GET["favorite_color"])
當cookie中含有中文時,可能會出現下面的錯誤:
Traceback (most recent call last): File "D:\program files\python37\lib\socketserver.py", line 650, in process_request_thread self.finish_request(request, client_address) File "D:\program files\python37\lib\socketserver.py", line 360, in finish_request self.RequestHandlerClass(request, client_address, self) File "D:\program files\python37\lib\socketserver.py", line 720, in __init__ self.handle() File "D:\python\workspace\mysite\venv\lib\site-packages\django\core\servers\basehttp.py", line 154, in handle handler.run(self.server.get_app()) File "D:\program files\python37\lib\wsgiref\handlers.py", line 144, in run self.close() File "D:\program files\python37\lib\wsgiref\simple_server.py", line 35, in close self.status.split(' ',1)[0], self.bytes_sent AttributeError: 'NoneType' object has no attribute 'split'
(2)我們可能會想到在設置cookie值的時候通過encode('utf-8')函數進行轉碼,于是進一步改進的代碼為:
response.set_cookie("favorite_color",request.GET["favorite_color"].encode('utf-8'))
這是網頁就能順利獲取到的cookie中包含的中文字符了。
但是又出現了另外一個問題:后臺獲取剛剛存放在cookie中的值時,顯示的內容不是原本的字符,而是轉碼后的十六進制字符,類似于下面這種:
Your favorite color is b'\xe8\x93\x9d\xe7\xbb\xbf\xe8\x89\xb2'
(3)解決方案為:
存儲cookie的方法:
favorite_color=request.GET.get('favorite_color') color=favorite_color.encode('utf-8').decode('latin-1') response.set_cookie("favorite_color",color)
獲取cookie的方法:
return HttpResponse("Your favorite color is %s" % request.COOKIES["favorite_color"].encode('latin-1').decode('utf-8'))
感謝各位的閱讀!關于python中cookie中文亂碼的解決方法就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。