如何在Go Lang中阅读JSON

时间:2017-06-23 05:25:54

标签: json go

我使用CURL将以下JSON数组作为Web服务输出接收。

{
  "total_rows": 4,
  "offset": 0,
  "rows": [
    {
      "id": "_design/people",
      "key": "_design/people",
      "value": {
        "rev": "3-d707964c8a3fa0c0c71e51c600bbafb8"
      }
    },
    {
      "id": "aamir",
      "key": "aamir",
      "value": {
        "rev": "3-4b9095435470366fb77df1a3d466bcff"
      }
    },
    {
      "id": "iyaan",
      "key": "iyaan",
      "value": {
        "rev": "1-4fea2c459d85480bf4841c7e581180c0"
      }
    },
    {
      "id": "tahir",
      "key": "tahir",
      "value": {
        "rev": "2-593c9237a96836a98f53c0374902964a"
      }
    }
  ]
}

我想从中分别提取“total_rows”对象和“rows”对象。

2 个答案:

答案 0 :(得分:1)

您只需要包encoding/json

定义行结构:

type Row struct {
    Id  string `json:"id"`
    Key string `json:"key"`
    Value struct {
        Rev string `json:"rev"`
    } `json:"value"`
}

定义的数据存储:

type Data struct {
    TotalRows int `json:"total_rows"`
    Offset    int `json:"offest"`
    Rows      []Row `json:"rows"`
}

然后使用json.Unmarshal

b := []byte("json string")
data := Data{}
if err := json.Unmarshal(b, &data); err != nil {
    panic(err)
}

fmt.Println(data.TotalRows, data.Offset)

for _, row := range data.Rows {
    fmt.Println(row.Id, row.Key)
}

答案 1 :(得分:0)

正如另一张海报所说,“encoding / json”将为您提供所需的内容。我还建议尝试一些第三方库,因为它们可能更适合您的实现。最初我建议看看:

这些只是一些快速建议,还有其他库。祝你好运!