美文网首页
go http 请求参数获取

go http 请求参数获取

作者: 耍帅oldboy | 来源:发表于2022-10-12 11:27 被阅读0次
//获取url parames
request.ParseForm()
values := request.Form["firs"][0]

//获取头部参数
request.Header.Get("name")


//解决post body 第二次读为空问题

func handleIterceptor(h http.HandlerFunc) http.HandlerFunc {
    return func(w http.ResponseWriter, r *http.Request) {
        fmt.Println("handleIterceptor")
        buff, _ := io.ReadAll(r.Body)
        r.Body.Close()//必须关闭后在给body 赋值
        r.Body = io.NopCloser(bytes.NewBuffer(buff))
        fmt.Println(string(buff))
        fmt.Printf("interceptor header %s\n",r.Header.Get("name"))
        h(w, r)
    }
}

相关文章

网友评论

      本文标题:go http 请求参数获取

      本文链接:https://www.haomeiwen.com/subject/egutzrtx.html