Sto riscontrando un problema nel controllo degli spazi bianchi e nella formattazione dei modelli html/template
in modo leggibile. I miei modelli sembrano somthing come questo:Come posso controllare gli spazi bianchi dopo un'azione in 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}}
codice
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",
},
},
})
}
Ma che produce (nota: c'è una linea sopra il doctype):
<!DOCTYPE html>
<html>
<head>
<title>stock</title>
</head>
<body>
2 items are made of angora
3 items are made of wool
</body>
</html>
Quello che voglio è:
<!DOCTYPE html>
<html>
<head>
<title>stock</title>
</head>
<body>
2 items are made of angora
3 items are made of wool
</body>
</html>
In altre lingue template posso dire le cose come
[[- value -]]
e gli spazi prima e dopo l'azione sono spogliati, ma non vedo nulla come quello in html/template
. Questo significa davvero che devo rendere illeggibili i miei template come il seguente?
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}}
Dal Go '1.6' https://golang.org/doc/go1.6#template – webwurst
sì, grazie @webwurst prima di 1.6, è possibile controllare https : //golang.org/pkg/text/template/#hdr-Text_and_spaces – hkulekci
Funziona solo per 'text/template', non' html/template'. –