Golang template 常见问题
-
@H_301_5@
template 语法
-
@H_301_5@{{with .Var}} 在下文可以用{{.}}
@H_301_5@判断相等用 {{eq .x .y}}
@H_301_5@获取数组长度 {{len .papers}}
@H_301_5@判断数组长度为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")
-
@H_301_5@调试——打印error