首页 > 后端开发 > Golang > 如何在 Go 的 JSON 编码中自定义时间戳格式?

如何在 Go 的 JSON 编码中自定义时间戳格式?

Patricia Arquette
发布: 2024-12-19 05:51:36
原创
128 人浏览过

How to Customize Timestamp Formatting in Go's JSON Encoding?

格式化 JSON 编码的时间戳

在使用 Go 时,可能会遇到需要格式化 time.Time 类型输出的时间戳。默认情况下,JSON 将时间编组为 RFC3339,从而导致格式不理想。

自定义时间戳格式

要自定义时间戳格式,请为自定义时间类型实现 Marshaler 接口:

import (
    "encoding/json"
    "fmt"
)

type JSONTime time.Time

func (t JSONTime) MarshalJSON() ([]byte, error) {
    stamp := fmt.Sprintf("\"%s\"", time.Time(t).Format("Mon Jan _2"))
    return []byte(stamp), nil
}
登录后复制

将此自定义类型应用于您的文档struct:

type Document struct {
    Name        string
    Content     string
    Stamp       JSONTime
    Author      string
}
登录后复制

编组时,您可以将 Document 实例初始化为:

testDoc := model.Document{"Meeting Notes", "These are some notes", JSONTime(time.Now()), "Bacon"}
登录后复制

生成的 JSON 现在将具有您所需格式的格式化时间戳,例如“May 2014 年 15 日”。

以上是如何在 Go 的 JSON 编码中自定义时间戳格式?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板