所以我尝试从 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:函数“安全”未定义所以我做错了什么?