jmespath 展平多个哈希值

jmespath flatten multiple hash values

理想情况下,我想编写一个 returns 平面列表输出的查询:["abc", "bcd", "cde", "def"] 来自以下 JSON 示例:

{
  "l_l": [
    [1,2,3],
    [4,5,6]
  ],
  "l_h_l": [
    { "n": [10,2,3] },
    { "n": [4,5,60] }
  ],
  "l_h_m": [
    {
      "n": {
        "1234": "abc",
        "2345": "bcd"
      }
    }, {
      "n": {
        "3456": "cde",
        "4567": "def"
      }
    }
  ]
}

我能得到的最接近的是 l_h_m[].n.*,其中 returns 我想要的内容作为未展开的列表列表:

[
  [
    "abc",
    "bcd"
  ],
  [
    "cde",
    "def"
  ]
]

jmespath 可让您扁平化列表列表。查询 l_l[]l_h_l[].n[] 都返回扁平的结果,当源 json 以这种方式构建时。

看来您的解决方案只需要另一个展平运算符。

l_h_m[].n.*[]

returns

[
  "abc",
  "bcd",
  "cde",
  "def"
]