gpt4 book ai didi

go - 无法使用 Gin 加载 HTML 模板

转载 作者:数据小太阳 更新时间:2023-10-29 03:23:54 31 4
gpt4 key购买 nike

我在通过 r.HTMLRender 设置使用 Gin 框架加载 html 模板时遇到了一些问题。

似乎找不到模板。

我曾尝试使用以下助手:

在设置模板的默认路径时,这些似乎都不起作用(在我的例子中是 app/views);为了达到这个目的,我的 html 模板文件结构如下所示:

/workspace
|-app
|-views
|-layouts
|-application.html
|-test.html

这是 Gin 加载代码的示例:

import (
"github.com/gin-contrib/location"
"github.com/gin-gonic/gin"
"fmt"
"os"
"github.com/gin-gonic/contrib/static"
"github.com/michelloworld/ez-gin-template"
)

//CORSMiddleware ...
func CORSMiddleware() gin.HandlerFunc {
/** CORS middleware **/
}

func Router() {

if os.Getenv("ENVIRONMENT") == "production" {
gin.SetMode(gin.ReleaseMode)
}

// Initialize Gin object
r := gin.Default()

// Cors Middleware
r.Use(CORSMiddleware())

// Rate limiting
rl, err := helpers.RateLimiterMiddleware()
if err != nil {
panic("Rate Limiting Initialization error")
}
r.Use(rl)

// Asset provision
r.Use(static.ServeRoot("/public","app/assets"))

// Get URL information
r.Use(location.Default())

// Attempt with EZ Template, fails
// I ge this error: "runtime error: invalid memory address or nil pointer dereference" when calling c.HTML(...)
render := eztemplate.New()
render.TemplatesDir = "app/views/" // default
render.Layout = "layouts/application" // default
render.Ext = ".html" // default
render.Debug = true // default
r.HTMLRender = render.Init()


// Attempt with GinHTMLRender, fails
// I get this error: https://gist.github.com/madhums/4340cbeb36871e227905#file-gin_html_render-go-L110
/*
htmlRender := GinHTMLRender.New()
htmlRender.TemplatesDir = "app/views/"
htmlRender.Debug = gin.IsDebugging()
htmlRender.Layout = "layouts/application"

log.Println("Dir:"+htmlRender.TemplatesDir)

r.HTMLRender = htmlRender.Create()*/

/** Some Routes **/

// Start web listener

r.Run(":8009") // listen and serve on 0.0.0.0:8080
}

对应的渲染调用代码如下:

/* c is of type *gin.Context */
c.HTML(200, "test", "")

出于某种原因,r.HTMLRender 函数似乎没有考虑模板路径;我尝试这样做:

_, err := template.ParseFiles("app/views/test.html")
if err != nil {
log.Println("Template Error")
} else {
log.Println("No Template Error")
}

此代码始终显示“无模板错误”,这让我相信 HTMLRender 分配没有考虑 TemplatesDir 设置变量。

我已经被这个问题困扰了一段时间,我不太确定如何解决它。

如能提供帮助,我们将不胜感激。

最佳答案

在做了一些进一步的研究之后,我发现了 EZ Gin 模板问题的根源。

我希望这对遇到同样问题的人有所帮助。

深入查看帮助代码后,我意识到模板匹配模式是严格的,不会递归搜索文件; IE。它需要特定的文件结构来查找模板文件:

在默认设置下,EZ Gin 模板需要以下文件结构才能工作:

/workspace
- app
- views
- layouts
- some_layout.html
- some_dir
- template_file.html
- _partial_template.html
- partials
- _some_other_partial.html

为了允许其他文件模式,需要修改辅助函数集。

在我的例子中,我在本地 fork 了帮助程序代码以允许匹配第一级模板文件:

func (r Render) Init() Render {
globalPartials := r.getGlobalPartials()

layout := r.TemplatesDir + r.Layout + r.Ext

// Match multiple levels of templates
viewDirs, _ := filepath.Glob(r.TemplatesDir + "**" + string(os.PathSeparator) + "*" + r.Ext)
// Added the following two lines to match for app/views/some_file.html as well as files on the **/*.html matching pattern
tmp, _ := filepath.Glob(r.TemplatesDir + "*" + r.Ext)
viewDirs = append(viewDirs, tmp...)
// Can be extended by replicating those two lines above and adding search paths within the base template path.

fullPartialDir := filepath.Join(r.TemplatesDir + r.PartialDir)
for _, view := range viewDirs {
templateFileName := filepath.Base(view)
//skip partials
if strings.Index(templateFileName, "_") != 0 && strings.Index(view, fullPartialDir) != 0 {
localPartials := r.findPartials(filepath.Dir(view))

renderName := r.getRenderName(view)
if r.Debug {
log.Printf("[GIN-debug] %-6s %-25s --> %s\n", "LOAD", view, renderName)
}
allFiles := []string{layout, view}
allFiles = append(allFiles, globalPartials...)
allFiles = append(allFiles, localPartials...)
r.AddFromFiles(renderName, allFiles...)
}
}

return r
}

我没有尝试过使用 GinHTMLRenderer 的类似解决方案,但我认为这个问题可能与预期的文件结构有关。

关于go - 无法使用 Gin 加载 HTML 模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47512171/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com