func main() {
http.HandleFunc("/", foo)
http.ListenAndServe(":3000", nil)
}
func foo(w http.ResponseWriter, r *http.Request) {
s:= "name"
fp := path.Join("templates", "index.html")
tmpl, err := template.ParseFiles(fp)
if err != nil {
panic(err)
}
if err := tmpl.Execute(w, s); err != nil {
panic(err)
}
fmt.Println("successfull Operation!!")
}
此代码显示 2 "successfull Operation!!" 但是当我添加/home( http.HandleFunc("/home", foo)) 时,它没有。我想知道为什么显示“成功操作!!” 两次。先感谢您。
牛魔王的故事
相关分类