使用Go 的HTTP 套件存取POST 請求中的查詢字串
使用Go 的HTTP 套件處理POST 請求時,可以存取和解析查詢字串至關重要的。 HTTP 套件提供了一個方便的提取查詢字串的方法:Query().
在POST 請求中,查詢字串通常附加到URL,包含資訊的鍵值對。 Query() 方法會擷取這些鍵值對並將它們解析為值對應。
要存取POST 請求中的查詢字串,請按照以下步驟操作:
例如:
func newHandler(w http.ResponseWriter, r *http.Request) { fmt.Println("GET params were:", r.URL.Query()) // if only one expected param1 := r.URL.Query().Get("param1") if param1 != "" { // ... process it, will be the first (only) if multiple were given // note: if they pass in like ?param1=&param2= param1 will also be "" :| } // if multiples possible, or to process empty values like param1 in // ?param1=&param2=something param1s := r.URL.Query()["param1"] if len(param1s) > 0 { // ... process them ... or you could just iterate over them without a check // this way you can also tell if they passed in the parameter as the empty string // it will be an element of the array that is the empty string } }
以上是如何存取 Go 的 HTTP POST 請求中的查詢字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!