使用 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中文网其他相关文章!