作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我有一个时间戳,我正在使用 time.Now().Format(time.RFC3339)
。格式是 2018-10-17T07:26:33Z
但是,我想要 ISO 8601 中的格式:2018-10-17T07:26:33.000Z
我最终如何获得这些额外的毫秒数?
最佳答案
自定义布局如下图
package main
import (
"fmt"
"time"
)
func main() {
t1, e := time.Parse(
time.RFC3339,
"2018-10-17T07:26:33Z")
if e != nil {
fmt.Println(e)
}
//2018-10-17T07:26:33.000Z required
//Layouts must use the reference time Mon Jan 2 15:04:05 MST 2006
fmt.Println(t1.Format("2006-01-02T15:04:05.000Z"))
}
Playground 链接(好主意 Sunny)https://play.golang.org/p/Y3II7lGZB-D
关于datetime - 如何在golang中将RFC3339格式转换为ISO8601?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52851477/
我是一名优秀的程序员,十分优秀!