Python 中的URL 編碼查詢字串
問題:
問題:我想對🎜進行URL 編碼提交之前查詢字串。如何在 Python 中執行此操作?
答案:在 Python 中,您可以使用 urllib.quote_plus() 函數對字串進行 URL 編碼。此函數將字串中的特殊字元替換為其百分比編碼的等效字元。
queryString = 'eventName=' + evt.fields["eventName"] + '&' + 'eventDescription=' + evt.fields["eventDescription"] safe_string = urllib.quote_plus(queryString)
範例:
這將對queryString 變數中的任何特殊字元進行編碼並儲存結果是safe_string.
注意:
在Python 3 中,urllib包已被拆分為更小的模組。要在Python 3中使用quote_plus,您需要匯入urllib.parse模組並使用urllib.parse.quote_plus()。import urllib.parse queryString = 'eventName=' + evt.fields["eventName"] + '&' + 'eventDescription=' + evt.fields["eventDescription"] safe_string = urllib.parse.quote_plus(queryString)
以上是如何在 Python 中對查詢字串進行 URL 編碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!