登录
首页 >  Golang >  Go问答

GoLang 中的时间戳和时区

来源:stackoverflow

时间:2024-04-11 18:09:32 498浏览 收藏

“纵有疾风来,人生不言弃”,这句话送给正在学习Golang的朋友们,也希望在阅读本文《GoLang 中的时间戳和时区》后,能够真的帮助到大家。我也会在后续的文章中,陆续更新Golang相关的技术文章,有好的建议欢迎大家在评论留言,非常感谢!

问题内容

我进行 http 调用并从较大的 json 对象中解组一个createdtimestamp 字段:

createdtimestamp string `json:"createdtimestamp"`

我从 createdtimestamp 的 http 调用中收到的示例是:"2021-07-19t18:51:23"

它不会自动将其转换为 time.time,因此它真正接受的唯一类型是一个字符串,该字符串一直有效,直到类型在 postgresql 中更改为 timestamp 时区 < 根据 postgresql 数据库控制台 > 看起来像这样( yyyy-mm-dd hh:mm:ss.ffffff)。和以前一样,它是 ,没有时区 。 我能够为 time.time 对象实现自定义解组方法,甚至对其进行格式化,以便我可以输出类似 2021-07-19 18:51:23.+00 的内容,但这不会被 postgres 接受。 p>

尝试插入此内容(通过 golang、postgres 驱动程序)时看到的确切错误是: pq: 带有时区的时间戳类型的输入语法无效:"" 在我尝试使用 db.exec -> db 类型为 *sql.db 执行插入后出现此错误。

我正在 go 中执行此操作,任何帮助将不胜感激!

解组 json 的代码

type customtime struct {
    time.time
}

func (ct *customtime) unmarshaljson(b []byte) (err error) {
    timetoinsertintodb := strings.trim(string(b), "\"")
    if timetoinsertintodb == "null" {
        ct.time = time.time{}
        return
    }

    timetoinsertintodb = timetoinsertintodb + "z"
    ct.time, err = time.parse(time.rfc3339, timetoinsertintodb)
    return
}

对于格式化,它取决于输出,但我确实收到了无论格式是什么的输出。所以如果我这样做,customtime.time.format(2006-02-01 15:04:05.-07) 我将得到 2021-07-19 18:51:23.+00 的输出

尽管此时,我什至不确定 timestamp 与 timezone 所需的确切格式,但 golang postgres 驱动程序没有太多关于此的文档。

如果需要更多信息,请询问。我正在尽力整理这个问题。

编辑 1

按照建议,我尝试将“z”附加到 http 调用给出的时间戳上。使用 time.rfc3339 进行解析后,给出的时间为 2021-07-19t18:51:23z - 这仍然失败(给出与上述相同的语法错误)。通过这种解析尝试了几种不同的方法。按照我上面所述的方式对其进行格式化,并使用 .string() 方法进行格式化,该方法将给出 2021-07-20 18:51:23 +0000 utc。两者均因 pq 失败:带时区的类型时间戳的输入语法无效:“”

解组期间的代码更改:

func (ct *CustomTime) UnmarshalJSON(b []byte) (err error) {
    timeToInsertIntoDb := strings.Trim(string(b), "\"")
    if timeToInsertIntoDb == "null" {
        ct.Time = time.Time{}
        return
    }

    timeToInsertIntoDb = timeToInsertIntoDb + "Z"
    ct.Time, err = time.Parse(time.RFC3339, timeToInsertIntoDb)
    return
}

编辑2

另一件事要提到的是,我使用 "database/sql" 包和 "github.com/lib/pq" 作为数据库连接的 postgres 驱动程序。 这就是错误来自 pq 的原因。只是想澄清一下,因为我知道其他人正在使用 gorm。我可以写入其他表,我猜只是这个表具有带有时区 postgres 列的时间戳。

我正在使用 db.exec("insert into db (created_timestamp) values ($1)", obj.createdtimestamp.time 进行调用 我尝试过将它作为字符串传递(这是我之前工作时所做的),但现在这就是我所处的位置,因为人们说最好传递一个 time.time 变量。


正确答案


如果您检查提供的 timeformat ctlayout 与时间格式标准 RFC3339 密切匹配

const ctlayout = "2006-01-02t15:04:05"
const rfc3339  = "2006-01-02t15:04:05z07:00"

来自这个blogpost

如果我们更改传入时间并在末尾附加 'z' ,则应该满足时间解析器的要求。

这是重构的代码。您可以在 playground 上找到工作代码。

        timetoinsertindb := "2006-01-02t15:04:05" + "z"

        testtime, err := time.parse(time.rfc3339, timetoinsertindb)
        if err != nil {
                fmt.println(err) 
        }

注意:- 更详细的时区示例

2019-10-12T07:20:50.52Z      (UTC+0)
2019-10-12T07:20:50.52+00:00 (UTC+0)
2019-10-12T14:20:50.52+07:00 (UTC+7)
2019-10-12T03:20:50.52-04:00 (UTC-4)

postgres 驱动程序需要 time.time。如果解析成功,驱动程序应该能够插入数据库以及解组模型结构中的响应。在 playground 上查看此示例。

编辑 1

根据op的编辑,我更改了使用的驱动程序,我尝试使用 database/sql 包和 github.com/lib/pq 但无法重现该问题。插入和选择工作完全正常。 playground

正如 brits 所提到的,这很可能是您的代码中存在逻辑错误(但无法确认这一点,因为您尚未共享代码)。

理论要掌握,实操不能落!以上关于《GoLang 中的时间戳和时区》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>