我在 Google App Engine 上使用 Google Go。我string
将结构中的描述保存到 adatastore
中,如下所示:
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 链接?