模式不匹配任何文件

时间:2019-03-30 08:56:23

标签: go go-templates gin

我的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" 但是他们不适合。

正确的模板路径是什么?

0 个答案:

没有答案