在 Go 中自訂 URL 路由
在 Go 中建立 Web 應用程式時,通常會為特定 URL 定義預先定義路由。但是,在某些情況下,您可能需要讀取和處理沒有預定路由的任意 URL 路徑。
從動態URL 讀取和列印參數
要讀取「例如「example.com/person/(any_name)」之類的URL 路徑中的「 any_name」參數,請考慮使用流行的gorilla/mux 套件。實作方法如下:
<code class="go">import ( "fmt" "net/http" "github.com/gorilla/mux" ) func main() { // Create a new router r := mux.NewRouter() // Define a route handler for the dynamic URL pattern r.HandleFunc("/person/{name}", func(w http.ResponseWriter, r *http.Request) { // Get the "name" parameter from the URL vars := mux.Vars(r) name := vars["name"] // Print the name to the response fmt.Fprintf(w, "Hello, %s!", name) }) // Start the HTTP server http.ListenAndServe(":8080", r) }</code>
工作原理
以上是如何在沒有預先定義路由的情況下處理 Go 中的任意 URL 路徑?的詳細內容。更多資訊請關注PHP中文網其他相關文章!