golang 模板template自定义函数用法示例以及注意事项

package main

import (
	"html/template"
	"net/http"
	"time"
)

type User struct {
	Username, Password string
	RegTime            time.Time
}

//这个函数的名字要大写,要不然模板中无法调用这个函数
func ShowTime(t time.Time, format string) string {
	return t.Format(format)
}

func main() {
	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
                //这边有个地方值得注意,template.New()函数中参数名字要和ParseFiles()
                //函数的文件名要相同,要不然就会报错:"" is an incomplete template
		tmpl := template.New("demo.html")
		tmpl = tmpl.Funcs(template.FuncMap{"showtime": ShowTime})
		tmpl, _ = tmpl.ParseFiles("demo.html")
		//mpl, _ = tmpl.Parse(`

{{.Username}}|{{.Password}}|{{.RegTime.Format "2006-01-02 15:04:05"}}

//

{{.Username}}|{{.Password}}|{{showtime .RegTime "2006-01-02 15:04:05"}}

//`) // tmpl = template.Must(tmpl.ParseFiles("templates/demo.html")) // 这样写也可以的,那么这个template.Must到底干嘛的呢? 其实就是省略了一个err user := User{"dotcoo", "dotcoopwd", time.Now()} if err := tmpl.ExecuteTemplate(w, "demo.html", user); nil != err { http.Error(w, err.Error(), http.StatusBadRequest) } }) http.ListenAndServe(":8082", nil) }

Func

{{.Username}}|{{.Password}}|{{.RegTime.Format "2006-01-02 15:04:05"}}

{{.Username}}|{{.Password}}|{{showtime .RegTime "2006-01-02 15:04:05"}}

最终显示结果:

golang 模板template自定义函数用法示例以及注意事项_第1张图片

 

 

 

你可能感兴趣的:(Go)