猿问

在 GoClipse 上保持 ListenAndServe

我从 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 上有什么方法可以保持程序运行吗?或者我在这里遗漏了什么?


Smart猫小萌
浏览 204回答 1
1回答

元芳怎么了

只是移动我的评论,因为我找不到任何其他问题(我知道我上周回答了这个问题,但我找不到)。Go 规则 #1,始终检查错误。因为http.ListenAndServe通常使用fmt.Println(http.ListenAndServe(":3000", nil))or是常见的做法log.Println。
随时随地看视频慕课网APP

相关分类

Go
我要回答