登录
首页 >  Golang >  Go问答

提取嵌套深层结构的 JSON 数据(使用维基百科 API)

来源:stackoverflow

时间:2024-03-01 08:27:23 486浏览 收藏

珍惜时间,勤奋学习!今天给大家带来《提取嵌套深层结构的 JSON 数据(使用维基百科 API)》,正文内容主要涉及到等等,如果你正在学习Golang,或者是对Golang有疑问,欢迎大家关注我!后面我会持续更新相关内容的,希望都能帮到正在学习的大家!

问题内容

作为 go 新手,这是我第一次尝试使用 go 结构从 wikipedia api 生成的 json 文件中访问深度嵌套的值。通读所有有关用 go 解组的线程并没有多大帮助。

json 示例文件(摘自维基百科 api)

{
  "batchcomplete": "",
  "query": {
    "normalized": [
      {
        "from": "go_(programming_language)",
        "to": "go (programming language)"
      }
    ],
    "pages": {
      "25039021": {
        "pageid": 25039021,
        "ns": 0,
        "title": "go (programming language)",
        "extract": "go is a statically typed, compiled programming language designed at google by robert griesemer, rob pike, and ken thompson."
      }
    }
  }
}

我想访问 titleextract 的值。使用 jq 很简单:

$ jq '.query.pages[] | .title, .extract' wikipedia-api-output
"go (programming language)"
"go is a statically typed, compiled programming language designed at google by robert griesemer, rob pike, and ken thompson."

我最近一次失败的 go 尝试:

type Wiki struct {
    Query struct {
        Pages struct {
            Article struct {
                Title   string `json:"title`
                Extract string `json:"extract`
            } `json:"25039021"`
        } `json:"pages"`
    } `json:"query"`
}

func main() {

    jsonStr :=
        `{
            "batchcomplete": "",
            "query": {
              "normalized": [
                {
                  "from": "Go_(programming_language)",
                  "to": "Go (programming language)"
                }
              ],
              "pages": {
                "25039021": {
                  "pageid": 25039021,
                  "ns": 0,
                  "title": "Go (programming language)",
                  "extract": "Go is a statically typed, compiled programming language designed at Google by Robert Griesemer, Rob Pike, and Ken Thompson."
                }
              }
            }
        }`
    var wikiDescr Wiki
    err := json.Unmarshal([]byte(jsonStr), &wikiDescr)
    if err != nil {
        fmt.Println(err)
    }

    fmt.Println(wikiDescr)

}

这将返回预期结果,但用于提取所需值的 pageid (25039021) 是由 wikipedia 生成的,无法猜测。有没有办法使用通配符该值,或者我需要先提取 pageid 值,然后像上面的代码一样使用它?


解决方案


使用地图,特别是 map[string]page,其中 page 是您的页面数据结构:

type Page struct {
    Title   string `json:"title"`
    Extract string `json:"extract"`
}

type Wiki struct {
    Query struct {
        Pages map[string]Page `json:"pages"`
    } `json:"query"`
}

此处的工作示例(在修复问题代码中的一些拼写错误后):https://play.golang.org/p/z9Ngcae9O1F

文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《提取嵌套深层结构的 JSON 数据(使用维基百科 API)》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>