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 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化