Golang在Revel中将字符串渲染为html

时间:2014-07-11 07:17:32

标签: html string go revel

我需要在Revel中将字符串渲染为html。这该怎么做? 我试过了:

func (c Pages) Show(url string) revel.Result {    
    bigDig := "<h1>Hello, dig!</h1>"

    return c.Render(bigDig)
}

然后在view

{{template "header.html" .}}

{{.bigDig}}

{{template "footer.html" .}}

但它不起作用。怎么做?

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

您应该将{{.bigDig}}更改为{{raw .bigDig}}