执行模板时我无法在 go lang 中找出这个错误
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)
}
}
我的文件夹是这样的:
斌 包 酒馆 css 主页.css js 源代码 github.com 大猩猩/多路复用器 模板 索引.html
我的 GOROOT 指向project
包含bin
pkg
src
当我在templates
外面制作文件夹时src
,它工作正常,但我认为这不对,一切都必须src
正确?
索引.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
更新::
第一个问题解决了模板文件夹。
但我仍然无法解决第二个问题