在Go GET 請求中動態建立查詢字串
在Go 中,使用查詢字串建構HTTP GET 請求可能是兩難的問題。預設方法需要連接字串,這變得乏味且容易出錯。為了解決這個問題,Go 提供了 net/url 包,它提供了一種更有效的方式來建立動態查詢字串。
要建立查詢字串,您可以使用 net/url 套件中的 query.Values 類型。以下程式碼片段示範如何執行此操作:
package main import ( "fmt" "log" "net/http" "golang.org/x/net/context" "golang.org/x/net/http2" ) func main() { ctx := context.Background() // Get the request context req := http.Request{} ctx = context.WithValue(ctx, http2.ClientConnContextKey, nil) // Build the querystring q := new(url.Values) // Initialize a new querystring q.Add("api_key", "my_api_key") q.Add("limit", "10") // Parse the URL and add the querystring url := "http://example.com/api/v1/users" url = fmt.Sprintf("%s?%s", url, q.Encode()) // Send the request resp, err := http.Get(url) if err != nil { log.Fatal(err) } defer resp.Body.Close() // Process the response fmt.Println(resp.Status) body, err := ioutil.ReadAll(resp.Body) if err != nil { log.Fatal(err) } fmt.Println(string(body)) }
在此範例中,query.Values 類型可讓您動態新增查詢字串參數。 url.String 函數將 URL 和查詢字串組合在一起,產生有效的 GET 請求。
使用 net/url 套件簡化了在 Go GET 請求中建立動態查詢字串的過程,使其更有效率、更少錯誤-容易發生。
以上是如何有效率地建構 Go GET 請求的動態查詢字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!