Go - 动态构建struct / json

时间:2015-05-07 15:41:31

标签: python json go syntactic-sugar

在Python中,可以创建一个字典并将其序列化为JSON对象,如下所示:

example = { "key1" : 123, "key2" : "value2" }
js = json.dumps(example)

Go是静态类型的,因此我们必须首先声明对象模式:

type Example struct {
    Key1 int
    Key2 string
}

example := &Example { Key1 : 123, Key2 : "value2" }
js, _ := json.Marshal(example)

有时需要在一个地方而不是其他地方使用具有特定模式(类型声明)的对象(struct)。我不想产生许多无用的类型,我不想为此使用反射。

Go中是否有任何语法糖提供更优雅的方法来做到这一点?

2 个答案:

答案 0 :(得分:13)

您可以使用地图:

example := map[string]interface{}{ "Key1": 123, "Key2": "value2" }
js, _ := json.Marshal(example)

您还可以在函数内创建类型:

func f() {
    type Example struct { }
}

或创建未命名的类型:

func f() {
    json.Marshal(struct { Key1 int; Key2 string }{123, "value2"})
}

答案 1 :(得分:11)

您可以使用匿名结构类型。

example := struct {
    Key1 int
    Key2 string
}{
    Key1: 123,
    Key2: "value2",
}
js, err := json.Marshal(&example)

或者,如果您准备丢失某些类型的安全性,map[string]interface{}

example := map[string]interface{}{
    "Key1": 123,
    "Key2": "value2",
}
js, err := json.Marshal(example)