수색…
통사론
t, err : = template.Parse (
{{.MyName .MyAge}}
)t.Execute (os.Stdout, struct {MyValue, MyAge string} { "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