我从 Go http/net 编程开始,使用 ListenAndServe 我没有得到模板渲染,因为当我运行 main.go 文件时,它会打印 Listening 行并在 Eclipse 上以状态 0 退出,这是代码:
package main
import (
"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 上有什么方法可以保持程序运行吗?或者我在这里遗漏了什么?
元芳怎么了
相关分类