dongyi5070 2013-08-06 18:56
浏览 54
已采纳

如何不在Go中将空结构编组为JSON?

I have a struct like this:

type Result struct {
    Data       MyStruct  `json:"data,omitempty"`
    Status     string    `json:"status,omitempty"`
    Reason     string    `json:"reason,omitempty"`
}

But even if the instance of MyStruct is entirely empty (meaning, all values are default), it's being serialized as:

"data":{}

I know that the encoding/json docs specify that "empty" fields are:

false, 0, any nil pointer or interface value, and any array, slice, map, or string of length zero

but with no consideration for a struct with all empty/default values. All of its fields are also tagged with omitempty, but this has no effect.

How can I get the JSON package to not marshal my field that is an empty struct?

  • 写回答

3条回答 默认 最新

  • doudaiyao0934 2013-08-06 19:09
    关注

    Oh! Easy fix: "any nil pointer." -- make the struct a pointer.

    Fix:

    type Result struct {
        Data       *MyStruct `json:"data,omitempty"`
        Status     string    `json:"status,omitempty"`
        Reason     string    `json:"reason,omitempty"`
    }
    

    Notice the *MyStruct -- when I create a MyStruct now, I simply do so by reference:

    myStruct := &MyStruct{ /* values */ }
    

    And now the "empty" MyStruct is no longer marshaled into JSON as desired.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?