本文实例讲述了golang模板template自定义函数用法。分享给大家供大家参考,具体如下:
golang的模板十分强大,其中的unix管道风格函数调用很是喜欢.
模板中有很多内置可以参看pkg文档,
另外还可以实现自定义函数.
例子如下:
{{.Username}}|{{.Password}}|{{.RegTime.Format "2006-01-02 15:04:05"}}
{{.Username}}|{{.Password}}|{{showtime .RegTime "2006-01-02 15:04:05"}}
希望本文所述对大家Go语言程序设计有所帮助。