繁体   English   中英

jq:选择而不从数组中删除项目

[英]jq: select without dropping items from array

我有一个看起来像这样的 JSON 文件(一个粗略的模式):

[{
    "custom_variables": [
        {
            "name": "xxx",
            "value": "xxx"
        },
        {
            "name": "xxx",
            "value": "xxx"
        },
        {
            "name": "profile_id",
            "value": "123"
        }
    ],
    // many fields
    "xxx": "xxx",
    "xxx": "xxx",
    "xxx": "xxx"
}]

我正在使用 jq 从顶级对象中提取所有字段。 custom_variables 字段包含具有名称和值的对象数组。

我想从 custom_variables 中提取一个特定的对象,给定它的名字。

所以我正在做的是:

jq 'map(
    {
        xxx: .xxx, 
        xxx: .xxx, 
        xxx: .xxx, 
        xxx: .custom_variables | .[] | select(.name == "variable_name")
    } 
)'

它几乎有效; 它在存在时获取我想要的变量,但是当它不存在时(或者如果 custom_variables 本身不存在),它将删除整个顶级对象。 所以最后我得到的对象比我放入脚本的要少。

如果我没有找到该字段但仍保留其余数据,我怎么能只返回 null?

使用替代运算符 ( // ) 将零元素流(例如可以由select.[]生成的那些)转换为值:

jq 'map(
    {
        xxx: .xxx, 
        xxx: .xxx, 
        xxx: .xxx, 
        xxx: .custom_variables | .[] | select(.name == "variable_name") // null
    } 
)'

//左侧有一个零元素流时,这将使.xxxnull

当然,您可以将替代运算符放在不同的位置,以便在更早或更晚的阶段捕获零元素流,例如在对象级别:

jq 'map(
    {
        xxx: .xxx, 
        xxx: .xxx, 
        xxx: .xxx, 
        xxx: .custom_variables | .[] | select(.name == "variable_name")
    } // {}
)'

这有效,但看起来很难看。 有什么更好的解决方案吗?

custom_variables: (if (.custom_variables | length > 0) 
            then (.custom_variables | .[]? | select(.name == "variable_name") | .value | scan("\\d+"))
            else null
            end)

尽我所能理解您的要求,以下内容可以满足您的要求。

map( if .custom_variables
     then .custom_variables |= (map(select(.name == "variable_name") | .value)
                                | .[0]) 
     else .
     end )

示例输入:

[{
    "custom_variables": [
        {
            "name": "xxx",
            "value": "xxx"
        },
        {
            "name": "xxx",
            "value": "xxx"
        },
        {
            "name": "variable_name",
            "value": "123"
        }
    ],
    "xxx1": "xxx",
    "xxx2": "xxx",
    "xxx3": "xxx"
},

{
    "yyy1": "yyy",
    "yyy2": "yyy",
    "yyy3": "yyy"
}
]

输出:

[
  {
    "custom_variables": "123",
    "xxx1": "xxx",
    "xxx2": "xxx",
    "xxx3": "xxx"
  },
  {
    "yyy1": "yyy",
    "yyy2": "yyy",
    "yyy3": "yyy"
  }
]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM