英文:
Golang time.Parse() get 0001-01-01 00:00:00 +0000 UTC
问题
这是我的代码:
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
如何获取正确的日期字符串?
谢谢!
英文:
This is my code:
t, _ := time.Parse("12/1/2015 12:00:00", "12/8/2015 12:00:00")
fmt.Println(t)
This is the result: 0001-01-01 00:00:00 +0000 UTC
How to get correct the date string?
Thanks!
答案1
得分: 11
你需要使用参考时间戳2006-01-02 15:04:05
作为布局参数(playground):
t, _ := time.Parse("1/2/2006 15:04:05", "12/8/2015 12:00:00")
英文:
You need to use the reference timestamp 2006-01-02 15:04:05
for the layout parameter (playground):
t, _ := time.Parse("1/2/2006 15:04:05", "12/8/2015 12:00:00")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论