-
Notifications
You must be signed in to change notification settings - Fork 0
/
Template_PrintEmails.go
71 lines (59 loc) · 1.17 KB
/
Template_PrintEmails.go
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
/*
Template_PrintEmails
本程序演示如何给template增加自定义函数。
本程序为template添加了函数EmailExpander用于把所有email中的@替换为at来显示
*/
package main
import (
"fmt"
"html/template"
"os"
"strings"
)
type Person struct {
Name string
Emails []string
}
const template_code = `
<div>The name is {{.Name}}</div>
<div>The email are</div>
{{range .Emails}}
<div>"{{. | emailExpand}}"</div>
{{end}}
`
func EmailExpander(args ...interface{}) string {
ok := false
var s string
if len(args) == 1 {
s, ok = args[0].(string)
}
if !ok {
s = fmt.Sprint(args...)
}
// 查找@
substrs := strings.Split(s, "@")
if len(substrs) != 2 {
return s
}
// 替换@
return substrs[0] + " at " + substrs[1]
}
func main() {
person := Person{
Name: "Jan",
Emails: []string{"[email protected]", "[email protected]"},
}
t := template.New("Person template")
// 添加函数
t = t.Funcs(template.FuncMap{"emailExpand": EmailExpander})
t, err := t.Parse(template_code)
checkError(err)
err = t.Execute(os.Stdout, person)
checkError(err)
}
func checkError(err error) {
if err != nil {
fmt.Println("Fatal error ", err.Error())
os.Exit(1)
}
}