6

我想通过gingonicc.Html()中的类型函数传递一个函数。Context

例如,如果我们想传递一个变量,我们使用

    c.HTML(http.StatusOK, "index", gin.H{
        "user":   user,
        "userID": userID,
    })

在 html 中我们称之为{{.user}}. 但是现在,有了函数,我们如何在 html 模板中传递和调用它呢?

4

2 回答 2

9

现在可以使用Engine.SetFuncMap. 自述文件现在包括以下示例

import (
    "fmt"
    "html/template"
    "net/http"
    "time"

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

func formatAsDate(t time.Time) string {
    year, month, day := t.Date()
    return fmt.Sprintf("%d%02d/%02d", year, month, day)
}

func main() {
    router := gin.Default()
    router.Delims("{[{", "}]}")
    router.SetFuncMap(template.FuncMap{
        "formatAsDate": formatAsDate,
    })
    router.LoadHTMLFiles("./fixtures/basic/raw.tmpl")

    router.GET("/raw", func(c *gin.Context) {
        c.HTML(http.StatusOK, "raw.tmpl", map[string]interface{}{
            "now": time.Date(2017, 07, 01, 0, 0, 0, 0, time.UTC),
        })
    })

    router.Run(":8080")
}
于 2018-04-21T23:01:38.280 回答
2

为了在模板中创建函数,您需要创建新的FuncMap

看起来 gin 框架正在创建模板指针并且无法被覆盖。

于 2016-07-06T10:15:47.853 回答