duanchen7036 2014-03-05 11:31
浏览 418
已采纳

如何基于golang中的条件从json对象数组中获取值?

I have an array like this.

[{
    "seq" : 2,
    "amnt" : 125
},
{
    "seq" : 3
    "amnt" : 25
},
{
    "seq" : 2
    "amnt" : 250
}]

I need to fetch objects from this array where seq is 2.

In Linq we have extensions in which I can put a where condition.

In Go do I need to loop through and get it using for loop or is there another way?

Please suggest me an optimum way.

Note: The json has many fields, for this example I gave only two.

I'm a new learner of Go.

  • 写回答

1条回答 默认 最新

  • dphj737575 2014-03-05 12:39
    关注

    I dont know about 'optimal' way to do this but here is what you can do for now to move forward:

    package main
    
    import (
        "encoding/json"
        "fmt"
    )
    
    func main() {
        byt := []byte(`[{"seq": 2,"amnt": 125},{"seq": 3,"amnt": 25},{"seq": 2,"amnt": 250}]`)
    
        var dat []map[string]int
    
        if err := json.Unmarshal(byt, &dat); err != nil {
            panic(err)
        }
    
        for idx := range dat {
    
            if dat[idx]["seq"] == 2 {
                fmt.Println("bingo")
            }
        }
    }
    

    Goodluck.

    Edit: in my first answer I assumed that you might have non-numeric values so that's why I used interface{} type but after @JimB suggestion I changed that to seek only int type, so if you have to have some string or any other type in you json payload the unmarshaling will fail.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀