當執行模板golang錯誤提供靜態文件
panic: open templates/*.html: The system cannot find the path specified.
時我無法弄清楚去郎此錯誤
另一個問題是,我的公用文件夾不能從CSS提供服務,我不知道爲什麼。
代碼:
package main
import (
"net/http"
"github.com/gorilla/mux"
"html/template"
"log"
)
var tpl *template.Template
func init() {
tpl = template.Must(template.ParseGlob("templates/*.html"))
}
func main() {
r := mux.NewRouter()
r.HandleFunc("/",home)
http.Handle("/public/", http.StripPrefix("/public/",
http.FileServer(http.Dir("/pub"))))
http.ListenAndServe(":8080", r)
}
func home(writer http.ResponseWriter, request *http.Request) {
err := tpl.ExecuteTemplate(writer, "index.html", nil)
if err != nil {
log.Println(err)
http.Error(writer, "Internal server error", http.StatusInternalServerError)
}
}
我的文件夾是這樣的:
bin pkg pub css home.css js src github.com gorila/mux templates index.html
我GOROOT指向含有bin
pkg
src
文件夾project
當我做templates
文件夾外部src
它工作正常,但我認爲這是不正確的ev什麼東西一定在src
對不對?
的index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
<link href="../public/css/home.css" type="text/css" rel="stylesheet" />
</head>
<body>
<h1>welcome! hi</h1>
</body>
</html>
在這裏,我不能服務於CSS
更新::
的第一個問題就解決了模板文件夾中。
但我仍然解決不了第二個問題
模板文件夾只需要靠近您在構建到二進制文件時所製作的二進制文件。源文件只需要src文件夾。因爲模板是在運行時加載的*而不是編譯時它不需要在src文件夾中。 – gabeio
所以你的意思是,當我去生產我將使用bin文件夾而不是src文件夾?所以我很抱歉問,但生產中使用的src是什麼?我的意思是如果有人使用我的代碼,他將如何使用我的代碼?從包? –
所以你的意思是我從'src'出來文件夾並將其放在'project'文件夾下,然後將'parseGlob'從'templates/*。html'改爲'src/templates/*。html'? –