我已经在Go中创建了一个API,该API在被调用后会执行查询,创建一个结构实例,然后将该结构编码为JSON,然后再发送回调用方。我现在想允许调用者通过传递“ fields” GET参数来选择他们想要返回的特定字段。
这意味着根据字段值,我的结构将发生变化。有什么方法可以从结构中删除字段?或者至少将它们动态隐藏在JSON响应中?(注意:有时我有空值,因此JSON omitEmpty标记在这里不起作用)如果以上两种方法都不可行,是否有更好的处理方法的建议?提前致谢。
我正在使用的结构的较小版本如下:
type SearchResult struct { Date string `json:"date"` IdCompany int `json:"idCompany"` Company string `json:"company"` IdIndustry interface{} `json:"idIndustry"` Industry string `json:"industry"` IdContinent interface{} `json:"idContinent"` Continent string `json:"continent"` IdCountry interface{} `json:"idCountry"` Country string `json:"country"` IdState interface{} `json:"idState"` State string `json:"state"` IdCity interface{} `json:"idCity"` City string `json:"city"` } //SearchResult type SearchResults struct { NumberResults int `json:"numberResults"` Results []SearchResult `json:"results"` } //type SearchResults
然后,我像这样编码和输出响应:
err := json.NewEncoder(c.ResponseWriter).Encode(&msg)
编辑:我注意到一些不赞成票,并再次查看了此问答。大多数人似乎错过了OP要求根据呼叫者提供的字段列表 动态 选择字段的想法。您不能使用静态定义的json struct标记执行此操作。
如果你想要的是 总是 跳过场JSON编码,那么当然使用json:"-"忽略场(也注意到,这是 不是 如果你的领域不导出必需的- 这些领域始终由JSON编码器忽略)。但这不是OP的问题。
json:"-"
引用对json:"-"答案的评论:
这个[ json:"-"答案]是大多数到这里搜索的人都想要的答案,但这不是问题的答案。
在这种情况下,我将使用map [string] interface {}而不是结构。您可以通过调用delete地图上的内置字段来轻松删除字段。
delete
也就是说,如果您不能仅首先查询所请求的字段。