2

所以我尝试从 base64 中放入图像,但我刚开始 ZgotmplZ 我尝试像这样使用 template.URL(s):

e := echo.New()
funcMap := template.FuncMap{
    "safe": func(s string) template.URL {
        return template.URL(s)
    },
}
t := &Template{
    templates: template.Must(template.ParseGlob("C:/Projects/Golang/hello/resources/*.html")).Funcs(funcMap),
}
e.Renderer = t
e.GET("/", func(context echo.Context) error {
    return context.Render(http.StatusOK, "index.html", GetData())
})

在模板中:

 <td rowspan="2"><img src="{{.Icon|safe}}"></td>

但是当我执行时:去运行恐慌:模板:index.html:34:函数“安全”未定义所以我做错了什么?

4

1 回答 1

2

模板函数必须在模板解析之前定义。要修复错误,请创建一个空模板,设置函数,然后解析 glob:

templates: template.Must(template.New("").Funcs(funcMap).ParseGlob("C:/Projects/Golang/hello/resources/*.html")),
于 2017-11-25T16:15:30.707 回答