我的约会看起来像这样
2019-03-29T09:32:52Z
请帮助我使用Go的标准时间包对其进行解析
答案 0 :(得分:0)
没关系,我只是布局错误
package main
import (
"fmt"
"time"
)
func main() {
layout := "2006-01-02T15:04:05Z07:00"
t, err := time.Parse(layout, "2019-03-29T09:32:52Z")
fmt.Println(t, err)
}