我的webapp结构:
- gin-cource
- src
- templates
- tmpl1
file.html
*.html
- tmpl2
file.html
*.html
当我运行它时,我会感到恐慌
html/template: pattern matches no files: `templates/**/*.html`
...
c:/users/user/go/src/gin-course/src/main.go:11 +0x50
代码:
r := gin.Default()
r.LoadHTMLGlob("templates/**/*.html") // line 11
我在go代码中尝试了模板的不同路径:"/templates/**/*.html", "src/templates/**/*.html" "gin-cource/src/templates/**/*.html"
但是他们不适合。
正确的模板路径是什么?