gpt4 book ai didi

json - 如何在jq中多次分配字段值?

转载 作者:行者123 更新时间:2023-12-04 13:48:38 25 4
gpt4 key购买 nike

我有这样的 jq 命令:

jq --arg ts "$TS" '.Date = $ts, .Marker.Date = $ts, .InfoFromTerminator.Timestamp = $ts'

但它似乎只替换了最后一项,保持前两项不变。如何重写查询以替换所有 3 个参数?

最佳答案

逗号是 jq 中的运算符:

Even the comma operator is a generator, generating first the values generated by the expression to the left of the comma, then for each of those, the values generate by the expression on the right of the comma.



可以通过从一个过滤器/分配管道到下一个过滤器/分配来更改多个元素,如下所示:
jq --arg ts "$TS" '.Date = $ts | .Marker.Date = $ts | .InfoFromTerminator.Timestamp = $ts'

关于json - 如何在jq中多次分配字段值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33075323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com