如何为数组中的嵌套数组中的多个对象生成连续索引

How to generate continuing indices for multiple objects in nested arrays that are in an array

给出

[{
  "objects": [{
    "key": "value"
  },{
    "key": "value"
  }]
}, {
  "objects": [{
    "key": "value"
  }, {
    "key": "value"
  }]
}]

如何生成

[{
  "objects": [{
    "id": 0,
    "key": "value"
  },{
    "id": 1,
    "key": "value"
  }]
}, {
  "objects": [{
    "id": 2,
    "key": "value"
  }, {
    "id": 3,
    "key": "value"
  }]
}]

使用 jq?

我试过用这个,但是id都是0:

jq '[(-1) as $i | .[] | {objects: [.objects[] | {id: ($i + 1 as $i | $i), key}]}]'

此处简单解决方案的关键是将问题分解成简单的部分。这可以通过定义辅助函数 addId/1 来实现。一旦完成,剩下的就很简单了:

# starting at start, add {id: ID} to each object in the input array 
def addId(start):
  reduce .[] as $o
    ([];
     length as $l 
     | .[length] = ($o | (.id = start + $l)));

reduce .[] as $o
  ( {start: -1, answer: []};
    (.start + 1) as $next
    | .answer += [$o | (.objects |= addId($next))]
    | .start += ($o.objects | length) )
| .answer

受@peak回答的启发,我想到了这个解决方案。差别不大,只是生成 ID 的方式更短,并选择 foreach 而不是 reduce,因为涉及中间结果。

def addIdsStartWith($start):
    [to_entries | map((.value.id = .key + $start) | .value)];

[foreach .[] as $set (
    {start: 0};
    .set = $set |
        .start as $start | .set.objects |= addIdsStartWith($start) |
        .start += ($set.objects | length);
    .set
)]