4
我在Google App Engine上使用Google Go。我現在的儲蓄結構中的string
描述成datastore
,像這樣:Golang GAE - HTML模板未正確插入鏈接到網頁
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鏈接?
對於第二部分 - '美孚Foo.Bar'的'[ 「酒吧」]'? – ThePiachu
@ThePiachu是的,它應該是'Foo.Bar' –