在Golang 中存取請求的URL 路徑變數
在Web 應用程式中,您可能會遇到需要從請求的URL 不遵循預先定義的路由模式。這是處理使用者輸入或來自外部來源的資料的動態網站中的常見要求。
要在 Golang 中實現此目的,請考慮使用 gorilla/mux 包,這是一個流行的路由器庫,它提供了方便的處理和提取機制路徑變數。實作方法如下:
安裝gorilla/mux 套件:
<code class="go">import "github.com/gorilla/mux"</code>
建立新路由器
<code class="go">r := mux.NewRouter()</code>
定義路由處理程序:
<code class="go">handler := func(w http.ResponseWriter, r *http.Request) { // Extract the path parameter using the "Vars" map name := mux.Vars(r)["name"] fmt.Fprintf(w, "Hello, %s!", name) }</code>
<code class="go">r.HandleFunc("/person/{name}", handler)</code>
請記住,在 Gorilla/Mux 中,可以透過與請求關聯的 Vars 對映來存取路徑變數。您可以在路由定義中的大括號內指定參數名稱,它們將作為 Vars 映射中的鍵來檢索它們的值。
以上是如何使用 Gorilla/Mux 存取 Golang 中請求的 URL 路徑變數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!