Поиск…
Синтаксис
t, err: = template.Parse (
{{.MyName .MyAge}}
)t.Execute (os.Stdout, struct {MyValue, строка MyAge} {"John Doe", "40.1"})
замечания
Golang предоставляет такие пакеты, как:
text/template
html/template
для создания управляемых данными шаблонов для генерации текстовых и HTML-выходных данных.
Выходные значения переменной struct в стандартный вывод с использованием текстового шаблона
package main
import (
"log"
"text/template"
"os"
)
type Person struct{
MyName string
MyAge int
}
var myTempContents string= `
This person's name is : {{.MyName}}
And he is {{.MyAge}} years old.
`
func main() {
t,err := template.New("myTemp").Parse(myTempContents)
if err != nil{
log.Fatal(err)
}
myPersonSlice := []Person{ {"John Doe",41},{"Peter Parker",17} }
for _,myPerson := range myPersonSlice{
t.Execute(os.Stdout,myPerson)
}
}
Определение функций для вызова из шаблона
package main
import (
"fmt"
"net/http"
"os"
"text/template"
)
var requestTemplate string = `
{{range $i, $url := .URLs}}
{{ $url }} {{(status_code $url)}}
{{ end }}`
type Requests struct {
URLs []string
}
func main() {
var fns = template.FuncMap{
"status_code": func(x string) int {
resp, err := http.Head(x)
if err != nil {
return -1
}
return resp.StatusCode
},
}
req := new(Requests)
req.URLs = []string{"http://godoc.org", "http://stackoverflow.com", "http://linux.org"}
tmpl := template.Must(template.New("getBatch").Funcs(fns).Parse(requestTemplate))
err := tmpl.Execute(os.Stdout, req)
if err != nil {
fmt.Println(err)
}
}
Здесь мы используем определенную функцию status_code
чтобы получить код состояния веб-страницы прямо из шаблона.
Выход:
http://godoc.org 200
http://stackoverflow.com 200
http://linux.org 200
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow