考虑这段代码:当我获取http://localhost:8080/
或http://localhost:8080/foo
时,一切都按预期工作。但是当我使用HEAD http方法时,http://localhost:8080/foo
工作,但http://localhost:8080/
中断(主程序退出,我得到这个错误:'template: main.html:1:0:执行"main.html"at <"homeHandler">: http:请求方法或响应状态码不允许正文。两者之间的区别在于一种情况(/
)使用模板,另一种情况(/foo
)使用简单字符串。
在我的代码中,我广泛地使用模板,所以看起来我必须显式地请求该方法并返回"200"(或适当的代码)。有模板和自动处理HEAD方法的方法吗?
我已经尝试了这些测试:curl http://localhost:8080/foo -I
(-I
用于HEAD方法)。
package main
import (
"html/template"
"log"
"net/http"
)
var (
templates *template.Template
)
// OK, HEAD + GET work fine
func fooHandler(w http.ResponseWriter, req *http.Request) {
w.Write([]byte("fooHandler"))
}
// GET works fine, HEAD results in an error:
// template: main.html:1:0: executing "main.html" at <"homeHandler">:
// http: request method or response status code does not allow body
func homeHandler(w http.ResponseWriter, req *http.Request) {
err := templates.ExecuteTemplate(w, "main.html", nil)
if err != nil {
log.Fatal(err)
}
}
func main() {
var err error
templates, err = template.ParseGlob("templates/*.html")
if err != nil {
log.Fatal("Loading template: ", err)
}
http.HandleFunc("/", homeHandler)
http.HandleFunc("/foo", fooHandler)
http.ListenAndServe(":8080", nil)
}
子目录templates
中的文件main.html
就是这个字符串:homeHandler
错误不言自明:
请求方法或响应状态码不允许正文
HEAD请求只允许将HTTP头作为响应发送回去。真正的问题是为什么你能够在fooHandler
中写入主体。
fooHandler
也不会写任何东西,你省略了它返回的错误,即http.ErrBodyNotAllowed
。