内容简介:最近发现程序中有一个时间代码比较老是不对打印nt和at后发现at明明在nt之前,但是nt.After返回了false.打印nt和at的Unix时间戳后发现,at时间增加了8个小时.
问题
最近发现程序中有一个时间代码比较老是不对
at, err := time.Parse("2006-01-02 15:04:05", authTime) if err != nil { return } nt := time.Now() fmt.Println(nt, at) if nt.After(at) { return }
打印nt和at后发现at明明在nt之前,但是nt.After返回了false.
原因
fmt.Println(nt.Unix(), at.Unix())
打印nt和at的Unix时间戳后发现,at时间增加了8个小时.
查看time.Parse文档后发现,这里解析的是UTC时间,与中国时间相差8个小时.
解决
使用time.ParseInLocation即可解决问题
time.ParseInLocation("2006-01-02 15:04:05", authTime, time.Local)
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Cracking the Coding Interview
Gayle Laakmann McDowell / CareerCup / 2015-7-1 / USD 39.95
Cracking the Coding Interview, 6th Edition is here to help you through this process, teaching you what you need to know and enabling you to perform at your very best. I've coached and interviewed hund......一起来看看 《Cracking the Coding Interview》 这本书的介绍吧!