我正在使用golang将内容添加到html模板文件中。主文件很简单
func main() {
server := http.Server{
Addr: "localhost:8080",
}
http.HandleFunc("/process", processCover)
server.ListenAndServe()
}
func processCover(w http.ResponseWriter, r *http.Request) {
t1, _ := template.ParseFiles("t1.html", "t2.html")
t1.Execute(w, "hello World")
}
在 html 文件中,如果我添加以下代码
<!-- {{ range . }}
<li>{{ . }}</li>
{{ end }} -->
它之后的项目都丢失了。我不明白,因为我认为这是被评论的。这应该是一些我不知道的关于go web的要点。
慕雪6442864
相关分类