35

当我调用 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>
4

6 回答 6

34

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

 <img src="#ZgotmplZ">

您可以在模板 funcMap 中添加一个 safe 和 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 等。

于 2013-02-10T10:11:24.283 回答
7

<img src="{{myfunction}}">我在 myfunction 返回编码图像的位置遇到了类似的问题。

最后我解决了这个问题,而不是字符串函数 return template.URL(mystring)

于 2015-10-18T18:07:50.357 回答
4

您试图在 template/html 认为不安全的地方输出 HTML(例如,在 HTML 元素内,如下所示:

<option {{ printSelected }}>

我找不到任何方法来说服它是安全的(包括返回 template.HTML 而不是字符串);我发现的唯一替代方法是重写模板,在此示例中使用 bool 输出代替:

<option {{ if printSelected }}selected{{ end }}>
于 2013-02-08T03:51:50.260 回答
3
package main

import (
    "html/template"
    "os"
)

type T struct {
    HTML template.HTML
    ATTR template.HTMLAttr
    URL  template.URL
    JS   template.JS
    CSS  template.CSS
}

func main() {

    data := T{
        HTML: `<div>test div</div>`,
        ATTR: `selected="selected"`,
        URL:  `https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg`,
        CSS:  `font-size: 15px`,
        JS:   `console.log("hello world")`,
    }

    template.Must(template.New("Template").Parse(`
        {{.HTML}}
        <option {{.ATTR}} style="{{.CSS}}">test</option>
        <script>{{.JS}}</script>
        <img src="{{.URL}}">
    `)).Execute(os.Stdout, data)
}

输出

<div>test div</div>
<option selected="selected" style="font-size: 15px">test</option>
<script>console.log("hello world")</script>
<img src="https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg">

操场示例

于 2019-10-07T20:46:56.373 回答
3

最简单的方法:

import "html/template"
yourhref = template.URL(yourhref)
于 2018-01-25T13:39:32.453 回答
0

您应该将字符串包装在一个HTMLAttr中,该字符串专为插入尖括号之间的文本而设计。根据文档:

https://golang.org/pkg/html/template/#HTMLAttr

HTMLAttr 封装来自可信来源的 HTML 属性,例如 dir="ltr".

使用这种类型会带来安全风险:封装的内容应该来自受信任的来源,因为它将逐字包含在模板输出中。

type HTMLAttr string

于 2018-06-12T17:59:05.227 回答