[Go] template显示html不要被转码

前端之家收集整理的这篇文章主要介绍了[Go] template显示html不要被转码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果直接分配到模板中html的字符串 , 会被转码 , 需要强制把字符串转换成template.HTML类型 , 例如下面这样:

    header := tools.FileGetContent("html/header.html")
    html := tools.FileGetContent(html/list.html)
    t,_ := template.New(list).Parse(html)
    render.(*tools.IndexData).Header=template.HTML(header)
    t.Execute(w,render)
IndexData结构体的 Header属性是  template.HTML类型的
template.HTML

猜你在找的Go相关文章