本文介绍了urllib.urlencode错误地编码±字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试为网络服务制作一个gui。站点在某些字段的值中使用±
字符。但我无法正确编码这个角色
。
Hi, I''m trying to make a gui for a web service. Site using ±
character in value of some fields. But I can''t encode this character
properly.
''key = %C2%B1''
但它应该只是%B1而不是%C2%B1。这个%C2来自哪里?
''key=%C2%B1''
but it should be only %B1 not %C2%B1. where is this %C2 coming from?
推荐答案
你的控制台必须是utf -8。
Your console must be utf-8.
'' \ xc2 \ xb1''
''\xc2\xb1''
目前还不清楚你是什么做。您是否与独立的第3个
派对Web服务进行交互,或者您是否控制服务器和客户端?
It is not clear what you do. Are you interacting with independant 3rd
party web service or you control both server and client?
这篇关于urllib.urlencode错误地编码±字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!