在 Go 的 POST 请求中访问查询字符串参数
在 Golang 的 http 包中,处理 POST 请求时,可以通过以下方式访问查询字符串解析Request对象的查询参数。 Request 类型提供 Query 方法,该方法返回包含查询字符串的键值对的 Values 映射。
示例
考虑带有 URL 的 POST 请求例如:
http://host:port/something?param1=b
访问 GET 参数Go:
func newHandler(w http.ResponseWriter, r *http.Request) { fmt.Println("GET params were:", r.URL.Query()) // Get a single parameter param1 := r.URL.Query().Get("param1") // Get multiple parameters or empty values param1s := r.URL.Query()["param1"] }
注意:
以上是如何访问Go的POST请求中的查询字符串参数?的详细内容。更多信息请关注PHP中文网其他相关文章!