登录
首页 >  Golang >  Go问答

如何将 JSON 响应中的时间戳设为零

来源:stackoverflow

时间:2024-03-14 08:42:28 112浏览 收藏

有志者,事竟成!如果你在学习Golang,那么本文《如何将 JSON 响应中的时间戳设为零》,就很适合你!文章讲解的知识点主要包括,若是你对本文感兴趣,或者是想搞懂其中某个知识点,就请你继续往下看吧~

问题内容

在我的 mongodb 中,我有字段

"createdat" : isodate("2018-10-02t01:17:58.000z")

我有结构有字段

createdat      time.time       `json:"createdat" bson:"createdat"`

但是当我通过 json 响应时,它缺少零毫秒 我预计

"createdat": "2018-10-02t01:17:58.000z"

但是收到了

"createdAt": "2018-10-02T01:17:58Z"

解决方案


来自 golang.org/pkg/time/#time.marshaljson:

时间是 rfc 3339 格式的带引号的字符串,如果存在,则添加亚秒精度。

这些零无关紧要,因此被省略。如果这对您不起作用,请实现您自己的 marshaljson 方法:

package main

import (
    "encoding/json"
    "fmt"
    "time"
)

type mytype struct {
    foo       string
    createdat time.time `json:"-" bson:"createdat"`
}

func (t mytype) marshaljson() ([]byte, error) {
    type mytype_ mytype // prevent recursion

    return json.marshal(struct {
        mytype_
        createdat string `json:"createdat"` // override time field
    }{
        mytype_(t),
        t.createdat.format("2006-01-02t15:04:05.000z07:00"),
    })
}

func main() {
    t := mytype{
        foo:       "bar",
        createdat: time.date(2018, 10, 2, 12, 13, 14, 0, time.utc),
    }

    b, err := json.marshalindent(t, "", "  ")
    fmt.println(err, string(b))

    t.createdat = t.createdat.add(123456 * time.microsecond)

    b, err = json.marshalindent(t, "", "  ")
    fmt.println(err, string(b))
}

// output:
//  {
//   "foo": "bar",
//   "t": "2018-10-02t12:13:14.000z"
// }
//  {
//   "foo": "bar",
//   "t": "2018-10-02t12:13:14.123z"
// }

https://play.golang.org/p/bmDk1pejGPS

如果您必须在很多地方执行此操作,那么创建自己的时间类型可能是值得的(不过,如果您必须进行日期数学运算,这会很不方便):

type MyType struct {
        Foo       string
        CreatedAt MyTime `json:"createdAt" bson:"createdAt"`
}

type MyTime struct {
        time.Time
}

func (t MyTime) MarshalJSON() ([]byte, error) {
        return json.Marshal(t.Format("2006-01-02T15:04:05.000Z07:00"))
}

以上就是《如何将 JSON 响应中的时间戳设为零》的详细内容,更多关于的资料请关注golang学习网公众号!

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