过去几个小时一直困扰着我,我正试图获得一个响应标头值。简单的东西。如果我curl
向这个正在运行的服务器发出请求,我会看到标题集,其中包含curl的-v
标志,但是当我尝试使用Go的response.Header.Get()
检索标题时,它会显示一个空字符串""
,标题长度为0。
更让我感到沮丧的是,当我打印出身体时,标题值实际上是在响应中设置的(如下所示)。
提前感谢,感谢您提供的所有帮助。
我这里有这个代码: http://play.golang.org/p/JaYTfVoDsq
其中包含以下内容:
package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
)
func main() {
mux := http.NewServeMux()
server := httptest.NewServer(mux)
defer server.Close()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
r.Header.Set("Authorization", "responseAuthVal")
fmt.Fprintln(w, r.Header)
})
req, _ := http.NewRequest("GET", server.URL, nil)
res, _:= http.DefaultClient.Do(req)
headerVal := res.Header.Get("Authorization")
fmt.Printf("auth header=%s, with length=%d\n", headerVal, len(headerVal))
content, _ := ioutil.ReadAll(res.Body)
fmt.Printf("res.Body=%s", content)
res.Body.Close()
}
此运行代码的输出为:
auth header=, with length=0
res.Body=map[Authorization:[responseAuthVal] User-Agent:[Go-http-client/1.1] Accept-Encoding:[gzip]]
答案 0 :(得分:6)
这一行:
r.Header.Set("Authorization", "responseAuthVal")
设置r *http.Request
的值,即请求请求,同时您要设置w http.ResponseWriter
的值,即您将收到的回复。
上述行应
w.Header().Set("Authorization", "responseAuthVal")
请参阅this playgroud。