如何在Python中對查詢字串進行urlencode?
P粉245489391
2023-08-23 14:36:44
<p>我正在嘗試在提交之前對該字串進行 urlencode。 </p>
<pre class="brush:php;toolbar:false;">queryString = 'eventName=' evt.fields["eventName"] '&' 'eventDescription=' evt.fields["eventDescription"];< /pre>
<p><br /></p>
Python 2
您要找的是
urllib.quote_plus
:Python 3
在 Python 3 中,
urllib
套件已被分解為更小的元件。您將使用urllib.parse.quote_plus
(注意parse
子模組)您需要將參數傳遞到
urlencode()
作為映射(字典)或二元組序列,例如:Python 3 或更高版本
使用
urllib.parse.urlencode
:請注意,這不執行常用意義上的 url 編碼(查看輸出)。為此,請使用
#urllib.parse.quote_plus代码>
.