我的问题与这个问题几乎相反:Unable to unmarshal json to protobuf struct field
我有一条消息,其中包含以下形式的几个嵌套消息:
message MyMsg {
uint32 id = 1;
message Attribute {
...
}
repeated Attribute attrs = 2;
message OtherAttribute {
...
}
OtherAttribute oAttr = 3;
...
}
一些外部依赖项将发送此消息 JSON 形式,然后需要将其解组为go结构。当尝试jsonpb像这样使用时,respa在哪里*http.Response:
msg := &MyMsg{}
jsonpb.Unmarshal(resp.Body, msg)
消息没有完全解码到结构中,即缺少一些嵌套结构。然而,当消息被简单地解码时,encoding/json如下所示:
msg := &MyMsg{}
json.NewDecoder(resp.Body).Decode(msg)
所有属性都成功解码到结构中。
正如jsonpbprotobuf/json 之间(un)marshall 的官方包一样,我想知道是否有人知道为什么会发生这种行为。的默认行为jsonpb和encoding/json不同之处是否可以解释一个能够解组而另一个不能?如果是这样,将在哪里配置相应的行为jsonpb?
慕勒3428872
相关分类