Golang template 高级问题

前端之家收集整理的这篇文章主要介绍了Golang template 高级问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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}}
    @H_301_5@

    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

Golang 项目地址

https://github.com/gajanlee/Posger

原文链接:https://www.f2er.com/go/187164.html

猜你在找的Go相关文章