系统找不到试图解析模板的指定路径

问题描述 投票:0回答:1

我刚刚开始学习Go中的html / templates。我收到的错误是“系统找不到指定的文件路径”。文件路径为templates / time.html。 time.html(我要呈现的页面)的位置是

SRC /模板/为time.html

我的go main的位置是src / timeserver / timerserver.go

这是我使用的代码

func TimeServer(w http.ResponseWriter, req *http.Request) {
// if user goes to another website after time/...
if req.URL.Path != "/time/" {
    errorHandler(w, req, http.StatusNotFound)
    return
}
cookie, _ := req.Cookie("UUID")
//existCheck := false
//temp2 := ""
profile := Profile{"",time.Now().Format("3:04:04 PM")}
if cookie != nil { // if cookie exist set flags
    name, check := cookieJar.GetValue(cookie.Value)
    profile = Profile{name,time.Now().Format("3:04:04 PM")}
    fmt.Println(name)
    //existCheck = check
    //temp2 = name
    fmt.Println(check)
}
fp := path.Join("templates", "time.html")
tmpl, err := template.ParseFiles(fp)
if err != nil {
    http.Error(w, err.Error(), http.StatusInternalServerError)
    return
}

if err := tmpl.Execute(w, profile); err != nil {
    http.Error(w, err.Error(), http.StatusInternalServerError)
}
html go go-templates
1个回答
0
投票

问题是我的路径不正确。已更改

fp := path.Join("templates", "time.html")

fp := path.Join("Home/go/src/templates", "time.html")
© www.soinside.com 2019 - 2024. All rights reserved.