Ich habe ein Problem, Whitespace und Formatierung html/template
Vorlagen in einer lesbaren Weise zu steuern. Meine Vorlagen somthing wie folgt aussehen:Wie kann ich Whitespace nach einer Aktion in HTML/Vorlage steuern?
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}}
Code
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",
},
},
})
}
Aber das erzeugt (Anmerkung: Es gibt eine Zeile oben der Doctype):
<!DOCTYPE html>
<html>
<head>
<title>stock</title>
</head>
<body>
2 items are made of angora
3 items are made of wool
</body>
</html>
Was ich will, ist:
<!DOCTYPE html>
<html>
<head>
<title>stock</title>
</head>
<body>
2 items are made of angora
3 items are made of wool
</body>
</html>
In anderer Template-Sprache kann ich sagen Dinge wie
[[- value -]]
und die Leerzeichen vor und nach der Aktion abgezogen werden, aber ich sehe nichts so in html/template
. Bedeutet das wirklich, dass ich meine Vorlagen wie folgt unlesbar machen muss?
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}}
Seit Go '1.6' https://golang.org/doc/go1.6#template – webwurst
ja, danke @webwurst vor 1.6 können Sie https überprüfen : //golang.org/pkg/text/template/#hdr-Text_and_spaces – hkulekci
Dies funktioniert nur für 'text/template', nicht' html/template'. –