gpt4 book ai didi

go - 为什么我在 Go HTML 模板输出中看到 ZgotmplZ?

转载 作者:IT老高 更新时间:2023-10-28 13:01:53 25 4
gpt4 key购买 nike

当我调用 Go 模板函数输出 HTML 时,它会显示 ZgotmplZ

示例代码:

http://play.golang.org/p/tfuJa_pFkm

package main

import (
"html/template"
"os"
)

func main() {
funcMap := template.FuncMap{
"printSelected": func(s string) string {
if s == "test" {
return `selected="selected"`
}
return ""
},

"safe": func(s string) template.HTML {
return template.HTML(s)
},
}
template.Must(template.New("Template").Funcs(funcMap).Parse(`
<option {{ printSelected "test" }} {{ printSelected "test" | safe }} >test</option>
`)).Execute(os.Stdout, nil)

}

输出:

<option ZgotmplZ ZgotmplZ >test</option>

最佳答案

“ZgotmplZ”是一个特殊值,表示不安全的内容达到了运行时的 CSS 或 URL 上下文。该示例的输出将是:

 <img src="#ZgotmplZ">

您可以在模板funcMap中添加一个安全和attr函数:

主包

import (
"html/template"
"os"
)

func main() {
funcMap := template.FuncMap{
"attr":func(s string) template.HTMLAttr{
return template.HTMLAttr(s)
},
"safe": func(s string) template.HTML {
return template.HTML(s)
},
}

template.Must(template.New("Template").Funcs(funcMap).Parse(`
<option {{ .attr |attr }} >test</option>
{{.html|safe}}
`)).Execute(os.Stdout, map[string]string{"attr":`selected="selected"`,"html":`<option selected="selected">option</option>`})
}

输出将如下所示:

<option selected="selected" >test</option>
<option selected="selected">option</option>

您可能想定义一些其他的函数,可以将字符串转换为 template.CSS、template.JS、template.JSStr、template.URL 等。

关于go - 为什么我在 Go HTML 模板输出中看到 ZgotmplZ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14765395/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com