当我尝试对文档进行排序时,我遇到了一些问题。 我的查询如下:
$lookup: {
from: 'landlords',
localField: 'landlordIds',
foreignField: '_id',
as: 'landlords',
},
{ $unwind: '$landlords' },
{ $sort: { 'landlords.fullName': 1, expiritionDate: 1 } }
此代码按fullName字段排序,第二个参数不适用。为什么这样 ? 合同集合enter image description here