我从 Go http/net 编程开始,使用 ListenAndServe 我没有得到模板渲染,因为当我运行 main.go 文件时,它会打印 Listening 行并在 Eclipse 上以状态 0 退出,这是代码:package mainimport ( "fmt" "html/template" "net/http")func indexHandler(w http.ResponseWriter, r *http.Request) { t, err := template.ParseFiles("templates/index.html") if err != nil { fmt.Fprintf(w, err.Error()) } t.ExecuteTemplate(w, "index", nil)}func main() { fmt.Println("Listening on port: 3000") http.HandleFunc("/", indexHandler) http.ListenAndServe(":3000", nil) }GoClipse 上有什么方法可以保持程序运行吗?或者我在这里遗漏了什么?
1 回答
元芳怎么了
TA贡献1798条经验 获得超7个赞
只是移动我的评论,因为我找不到任何其他问题(我知道我上周回答了这个问题,但我找不到)。
Go 规则 #1,始终检查错误。
因为http.ListenAndServe
通常使用fmt.Println(http.ListenAndServe(":3000", nil))
or是常见的做法log.Println
。
- 1 回答
- 0 关注
- 203 浏览
添加回答
举报
0/150
提交
取消