如何在Go Gin中使用模板来获取动态内容

时间:2016-06-14 13:11:44

标签: go go-templates go-gin

我有一个简单的Go / Gin网络应用程序。我需要在html模板中添加一些动态内容。

例如我有一些表(数字是动态的)有几行(数字是动态的)。我需要把它们放在html模板中。有没有办法在代码中组合模板?我更喜欢在代码中使用模板而不是构建表。

我已经检查过教程https://github.com/gin-gonic/gin,但不在那里。

1 个答案:

答案 0 :(得分:3)

您可以使用define定义部分内容,使用template来混合多个HTML部分内容。

package main

import (
    "html/template"

    "github.com/gin-gonic/gin"
)

var (
    partial1 = `{{define "elm1"}}<div>element1</div>{{end}}`
    partial2 = `{{define "elm2"}}<div>element2</div>{{end}}`
    body     = `{{template "elm1"}}{{template "elm2"}}`
)

func main() {
    // Or use `ParseFiles` to parse tmpl files instead 
    t := template.Must(template.New("elements").Parse(body))

    app := gin.Default()
    app.GET("/", func(c *gin.Context) {
        c.HTML(200, "elements", nil)
    })
    app.Run(":8000")
}

这是阅读https://gohugo.io/templates/go-templates/

的好地方