Golang template 常见问题
template 语法
- {{with .Var}} 在下文可以用{{.}}
- 判断相等用 {{eq .x .y}}
- 获取数组长度 {{len .papers}}
- 判断数组长度为0 {{eq (len .papers) 0}}
template 自定义函数
t,_ := template.New("user.html").Funcs(template.FuncMap{"showTime": func(ts int32) string {
return time.Unix(int64(ts),0).Format("2006-01-02 15:04:05")
}}).ParseFiles("static/views/user.html","static/views/ref.html")
- 调试——打印error