登录
首页 >  Golang >  Go问答

在Gin Gonic(Golang)中如何使用HTML模板?

来源:stackoverflow

时间:2024-03-06 20:45:25 500浏览 收藏

最近发现不少小伙伴都对Golang很感兴趣,所以今天继续给大家介绍Golang相关的知识,本文《在Gin Gonic(Golang)中如何使用HTML模板?》主要内容涉及到等等知识点,希望能帮到你!当然如果阅读本文时存在不同想法,可以在评论中表达,但是请勿使用过激的措辞~

问题内容

我正在尝试使用 gin gonic 在 golang 上创建 html 模板。但是在渲染我制作的用于生成 web 视图的模板时出现问题(结果为空白)。我的代码有问题吗?我尝试阅读 gin gonic 文档,但它无法解决我的问题。

/workspace
|- main.go
|-web
  |-assets
  |-base
     | - header.html
     | - footer.html

  |-pages
    |-about.html

这是示例主文件

import (
    "log"
    "net/http"

    "github.com/getsentry/sentry-go"
    "github.com/gin-gonic/gin"
    "html/template"
)


func main() {
    router := gin.default()
    html := template.must(template.parsefiles("web/base/footer.html", "web/base/header.html"))
    router.sethtmltemplate(html)
    router.loadhtmlglob("web/pages/*")

    router.get("/index", func(c *gin.context) {
        c.html(http.statusok, "about.html", gin.h{
            "title": "main website",
        })
    })
    router.run(":8000")

}

这是我的 header.html 文件

{{ define "header" }}
<head>
    <title>example</title>
</head>
{{end}}

我的页脚.html

{{ define "footer" }}
<script>
    
</script>
{{end}}

这是我的 about.html

{{define "about"}}
<html>
   {{ template "Header" }}
   <body>
       About me
       {{ template "Footer" }}
   </body
</html>

感谢您的提前


解决方案


首先将每个模板放入同一根模板文件夹中,例如:

/workspace
|- main.go
|-web
  |-assets
  |-templates
    |-base
       | - header.html
       | - footer.html
    |-pages
      |-about.html

现在设置 gin 从该根文件夹加载所有模板:

func main() {
    router := gin.default()
    router.loadhtmlglob("templates/**/*")

    router.get("/index", func(c *gin.context) {
        c.html(http.statusok, "about.html", gin.h{
            "title": "main website",
        })
    })
    router.run(":8000")

}

当您定义模板名称 about 时,您需要在处理程序中使用它:

func main() {
    router := gin.Default()
    router.LoadHTMLGlob("templates/**/*")

    router.GET("/index", func(c *gin.Context) {
        c.HTML(http.StatusOK, "about", gin.H{
            "title": "Main website",
        })
    })
    router.Run(":8000")

}

今天关于《在Gin Gonic(Golang)中如何使用HTML模板?》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>