私はGoの初心者で、関数のストリームにデータ「home.html」を書き込むための呼び出しがどこにあるのかわかりExecute
ません。http.ResponseWriterは明確なライターですが、関数では私だけExecute
のようなものは見えませんwrite .. fmt.Fprint..
の再帰を見てくださいExecute
http://golang.org/src/pkg/html/template/template.go?s=1245:1315#L40
//my Function
func homeHandler(c http.ResponseWriter, req *http.Request) {
var homeTempl = template.Must(template.ParseFiles("home.html"))
//here is my misunderstanding
homeTempl.Execute(c, req.Host)
//Thats consistent
fmt.Fprint(c, "hallo")
}