Golang time.Parse()得到0001-01-01 00:00:00 +0000 UTC

时间:2015-12-08 11:31:18

标签: go

这是我的代码:

t, _ := time.Parse("12/1/2015 12:00:00", "12/8/2015 12:00:00")
fmt.Println(t)

结果如下:0001-01-01 00:00:00 +0000 UTC

如何更正日期字符串?

谢谢!

1 个答案:

答案 0 :(得分:2)

您需要使用参考时间戳2006-01-02 15:04:05作为布局参数(playground):

t, _ := time.Parse("1/2/2006 15:04:05", "12/8/2015 12:00:00")