gpt4 book ai didi

datetime - 如何在golang中将RFC3339格式转换为ISO8601?

转载 作者:IT王子 更新时间:2023-10-29 02:01:19 28 4
gpt4 key购买 nike

我有一个时间戳,我正在使用 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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com