假如
集合 options 是这样的
[{
title: '12',
users: ['1', '2']
}]
集合 users 是这样的
[{
id: '1',
name: 'Li'
}, {
id: '2',
name: 'Wang'
}]
希望聚合后的结果是这样的
[{
title: '12',
users: [ { id: '1', name: 'Wang' }, { id: '2', name: 'Wang' }]
}]
请问怎么写呢
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/aggregate/Aggregate.lookup.html