

- package main
-
- import (
- "html/template"
- "os"
- )
-
- type Person struct {
- UserName string
- }
-
- func main() {
- t := template.New("fieldname example")
- t, _ = t.Parse("hello {{.UserName}}!")
- p := Person{UserName: "Astaxie"}
- t.Execute(os.Stdout, p)
- }
模板处理 · Build web application with Golang