为了账号安全,请及时绑定邮箱和手机立即绑定

从结构中删除字段或将它们隐藏在 JSON 响应中

从结构中删除字段或将它们隐藏在 JSON 响应中

Go
函数式编程 2021-06-18 23:16:08
我在 Go 中创建了一个 API,它在被调用时执行查询,创建一个结构体的实例,然后将该结构体编码为 JSON,然后再发送回调用者。我现在希望调用者能够通过传入“字段”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"`} //SearchResulttype SearchResults struct {    NumberResults int            `json:"numberResults"`    Results       []SearchResult `json:"results"`} //type SearchResults然后我像这样编码和输出响应:err := json.NewEncoder(c.ResponseWriter).Encode(&msg)
查看完整描述

3 回答

  • 3 回答
  • 0 关注
  • 146 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信