我有一个嵌套的JSON对象在请求体中发送,http协议。JSON字段的键之一以下划线“_”开头。如何导出该字段?范例:
type TopologyGateway struct { _my_property string `json:"_my_property"` }
给出以下错误:struct field _my_property has json tag but is not exported任何帮助将不胜感激!尝试通过其他堆栈溢出和文章挖掘,没有运气。
struct field _my_property has json tag but is not exported
vngu2lb81#
U可以
type SomeStruct struct { MyField string `json:"<_>SomeFiled"` }
不要使用_来命名你的字段\变量等。按照约定,以下划线_开头的变量和字段名被视为未导出(私有)
1条答案
按热度按时间vngu2lb81#
U可以
不要使用_来命名你的字段\变量等。
按照约定,以下划线_开头的变量和字段名被视为未导出(私有)