小编典典

Go 中带有 JSON Marshal 的小写 JSON 键名

all

我希望使用该"encoding/json"包来编组在我的应用程序的一个导入包中声明的结构。

例如。:

type T struct {
    Foo int
}

因为它是导入的,所以结构中所有可用(导出)的字段都以大写字母开头。但我希望有小写的键名:

out, err := json.Marshal(&T{Foo: 42})

将导致

{“Foo”:42}

但我希望得到

{“Foo”:42}

是否有可能以某种简单的方式解决问题?


阅读 81

收藏
2022-06-25

共1个答案

小编典典

查看encoding/json.Marshal的文档。它讨论了使用结构字段标签来确定生成的
json 的格式。

例如:

type T struct {
    FieldA int    `json:"field_a"`
    FieldB string `json:"field_b,omitempty"`
}

这将生成如下 JSON:

{
    "field_a": 1234,
    "field_b": "foobar"
}
2022-06-25