我正在Google App Engine上使用Google Go。我string将结构中的描述保存到中datastore,如下所示:
type Foo struct{
Bar string
}
该描述包括html标记,例如:
<a href="/">Bar</a>
我希望将该html template描述包含在html文件中,以便将其解析为html。例如:
<html><head><title>Title</title></head>
<body>{{.Bar}}</body></html>
解析为:
<html><head><title>Title</title></head>
<body><a href="/">Bar</a></body></html>
但是相反,我得到了这样的东西:
<html><head><title>Title</title></head>
<body><a href="/">Bar's</a></body></html>
如何使正确template解析string为html链接?
相关分类