我的模特是
channel: [
{
type: ObjectId,
ref: 'Channel',
},
],
我需要把身份证放进去
await User.findByIdAndUpdate(
req.params.userId,
{
$push: {
channel: channel._id,
},
},
{
new: true,
}
).populate('channel')
但是如果我这样推的话,id是按升序存储的,但是我需要按降序存储,我的意思是从最后到第一。
1条答案
按热度按时间pqwbnv8z1#
尝试使用
$position
修饰符在数组的开头使用$push
: