空白の制御に問題があり、まだhtml/template
のテンプレートを読み込み可能な形式でフォーマットしています。html/templateのアクション後に空白を制御する方法はありますか?
layout.tmpl
{{define "layout"}}
<!DOCTYPE html>
<html>
<head>
<title>{{.title}}</title>
</head>
<body>
{{ template "body" . }}
</body>
</html>
{{end}}
body.tmpl
{{define "body"}}
{{ range .items }}
{{.count}} items are made of {{.material}}
{{end}}
{{end}}
コード
package main
import (
"os"
"text/template"
)
type View struct {
layout string
body string
}
type Smap map[string]string
func (self View) Render(data map[string]interface{}) {
layout := self.layout + ".tmpl"
body := self.body + ".tmpl"
tmpl := template.Must(template.New("layout").ParseFiles(layout, body))
tmpl.ExecuteTemplate(os.Stdout, "layout", data)
}
func main() {
view := View{ "layout", "body" }
view.Render(map[string]interface{}{
"title": "stock",
"items": []Smap{
Smap{
"count": "2",
"material": "angora",
},
Smap{
"count": "3",
"material": "wool",
},
},
})
}
しかし、それが生成する(注意:上記の行があると私のテンプレートは次のように気にいらを見ますdoctype):
私が欲しいものがある:他のテンプレート言語で
<!DOCTYPE html>
<html>
<head>
<title>stock</title>
</head>
<body>
2 items are made of angora
3 items are made of wool
</body>
</html>
私は
[[- value -]]
のようなものを言うことができ、アクションの前と後の空白が取り除かれますが、私は何も表示されません。 html/template
のように。これは本当に私のテンプレートを次のように読めないようにしなければならないということですか?
layout.tmpl
{{define "layout"}}<!DOCTYPE html>
<html>
<head>
<title>.title</title>
</head>
<body>
{{ template "body" . }} </body>
</html>
{{end}}
body.tmpl
{{define "body"}}{{ range .items }}{{.count}} items are made of {{.material}}
{{end}}{{end}}
を使用することができます '1.6' https://golang.org/doc/go1.6#template – webwurst
はい、1.6前@webwurstありがとう、あなたは、HTTPSを確認することができます://golang.org/pkg/text/template/#hdr-Text_and_spaces – hkulekci
これは 'text/template'のみで、' html/template'では動作しません。 –