如何在Flask 應用程式中從URL 檢索命名參數
在Flask 中處理使用者請求時,經常會遇到包含命名的URL問號後指定的參數。這些參數提供了一種將資料傳遞到伺服器的方法。例如,考慮 URL:
http://example.com/login?username=alex&password=password123
為了操作嵌入在此類 URL 中的參數,Flask 提供了一個名為 request.args 的便利方法。
解決方案:
要取得查詢字串的解析內容,請使用以下程式碼:
<code class="python">from flask import request @app.route(...) def login(): username = request.args.get('username') password = request.args.get('password') # Perform desired operations based on username and password</code>
在此範例中,get方法用於檢索「使用者名稱」和「密碼」的值' 參數。然後可以根據需要在 Flask 應用程式中處理或儲存檢索到的值。
以上是如何從 Flask 應用程式中的 URL 提取命名參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!