python对urlEncode进行解码
利用python自带的urlib进行编码和解码,没有什么问题.(https://www.hustyx.com/python/)
但如果是用url编码工具(http://tool.chinaz.com/Tools/urlencode.aspx)进行编码,会把空格转成"+",再利用unqoute时无法还原.此时需要用到unquote_pluse进行解码.
新战场:https://blog.csdn.net/Stephen___Qin
利用python自带的urlib进行编码和解码,没有什么问题.(https://www.hustyx.com/python/)
但如果是用url编码工具(http://tool.chinaz.com/Tools/urlencode.aspx)进行编码,会把空格转成"+",再利用unqoute时无法还原.此时需要用到unquote_pluse进行解码.