Golang如何输入json HTTP响应体

gudnpqoy  于 2023-09-28  发布在  Go
关注(0)|答案(1)|浏览(115)

我有一个嵌套的JSON对象在请求体中发送,http协议。JSON字段的键之一以下划线“_”开头。如何导出该字段?范例:

type TopologyGateway struct {
    _my_property string `json:"_my_property"`
}

给出以下错误:struct field _my_property has json tag but is not exported
任何帮助将不胜感激!
尝试通过其他堆栈溢出和文章挖掘,没有运气。

vngu2lb8

vngu2lb81#

U可以

type SomeStruct struct {
  MyField string `json:"<_>SomeFiled"`
}

不要使用_来命名你的字段\变量等。
按照约定,以下划线_开头的变量和字段名被视为未导出(私有)

相关问题