我在Go中创建了一个API,在被调用时,执行查询,创建一个结构的实例,然后在将该结构编码为JSON之后再发送回调用者。现在我想允许调用者通过传入“fields”GET参数来选择他们想要返回的特定字段。
@H_301_12@这意味着根据字段值,我的结构将改变。有没有办法从结构中删除字段?或者至少将它们动态隐藏在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)