liyujie
2025-08-28 d9927380ed7c8366f762049be9f3fee225860833
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
 
package template_test
 
import (
   "log"
   "os"
   "strings"
   "text/template"
)
 
func ExampleTemplate() {
   // Define a template.
   const letter = `
Dear {{.Name}},
{{if .Attended}}
It was a pleasure to see you at the wedding.
{{- else}}
It is a shame you couldn't make it to the wedding.
{{- end}}
{{with .Gift -}}
Thank you for the lovely {{.}}.
{{end}}
Best wishes,
Josie
`
 
   // Prepare some data to insert into the template.
   type Recipient struct {
       Name, Gift string
       Attended   bool
   }
   var recipients = []Recipient{
       {"Aunt Mildred", "bone china tea set", true},
       {"Uncle John", "moleskin pants", false},
       {"Cousin Rodney", "", false},
   }
 
   // Create a new template and parse the letter into it.
   t := template.Must(template.New("letter").Parse(letter))
 
   // Execute the template for each recipient.
   for _, r := range recipients {
       err := t.Execute(os.Stdout, r)
       if err != nil {
           log.Println("executing template:", err)
       }
   }
 
   // Output:
   // Dear Aunt Mildred,
   //
   // It was a pleasure to see you at the wedding.
   // Thank you for the lovely bone china tea set.
   //
   // Best wishes,
   // Josie
   //
   // Dear Uncle John,
   //
   // It is a shame you couldn't make it to the wedding.
   // Thank you for the lovely moleskin pants.
   //
   // Best wishes,
   // Josie
   //
   // Dear Cousin Rodney,
   //
   // It is a shame you couldn't make it to the wedding.
   //
   // Best wishes,
   // Josie
}
 
// The following example is duplicated in html/template; keep them in sync.
 
func ExampleTemplate_block() {
   const (
       master  = `Names:{{block "list" .}}{{"\n"}}{{range .}}{{println "-" .}}{{end}}{{end}}`
       overlay = `{{define "list"}} {{join . ", "}}{{end}} `
   )
   var (
       funcs     = template.FuncMap{"join": strings.Join}
       guardians = []string{"Gamora", "Groot", "Nebula", "Rocket", "Star-Lord"}
   )
   masterTmpl, err := template.New("master").Funcs(funcs).Parse(master)
   if err != nil {
       log.Fatal(err)
   }
   overlayTmpl, err := template.Must(masterTmpl.Clone()).Parse(overlay)
   if err != nil {
       log.Fatal(err)
   }
   if err := masterTmpl.Execute(os.Stdout, guardians); err != nil {
       log.Fatal(err)
   }
   if err := overlayTmpl.Execute(os.Stdout, guardians); err != nil {
       log.Fatal(err)
   }
   // Output:
   // Names:
   // - Gamora
   // - Groot
   // - Nebula
   // - Rocket
   // - Star-Lord
   // Names: Gamora, Groot, Nebula, Rocket, Star-Lord
}