golang的time.Format的坑

前端之家收集整理的这篇文章主要介绍了golang的time.Format的坑前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

golang的time.Format设计的和其他语言都不一样,其他语言总是使用一些格式化字符进行标示,而golang呢,查了网上一些坑例子 自己查了下golang的源码,发现以下代码

// String returns the time formatted using the format string
// "2006-01-02 15:04:05.999999999 -0700 MST"
func (t Time) String() string {
    return t.Format("2006-01-02 15:04:05.999999999 -0700 MST")
}

尝试将2006-01-02 15:04:05写入到自己的例子中

func nowTime() string {
    return time.Now().Format("2006-01-02 15:04:05")
}

结果返回正确. 询问了下,据说这个日期是golang诞生的日子… 咋那么自恋呢…

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

猜你在找的Go相关文章