gpt4 book ai didi

go - 使用模板导出双引号

转载 作者:数据小太阳 更新时间:2023-10-29 03:32:14 28 4
gpt4 key购买 nike

我正在使用 template 在 go 中导出 " 但它只返回 "。有没有办法得到它改为导出 "

import (
"html/template"
)

//Testf a test function
func Testf() string {
return "\""
}

//MapToFunctions Map actions to functions
var MapToFunctions = template.FuncMap{
"testf": Testf}

然后,为了在文件中使用,我将放入 {{ testf }}

最佳答案

那是因为 html/template 将转义所有 html 特殊字符并将其替换为 html 编码使其成为 html 安全的。

为了避免这种情况,您应该将 html/template 替换为 text/template

text/template

关于go - 使用模板导出双引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57470612/

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