聚合框架中的$ sort不适用于两个参数

时间:2018-03-13 11:50:48

标签: mongodb mongoose aggregation-framework

当我尝试对文档进行排序时,我遇到了一些问题。 我的查询如下:

$lookup: {
  from: 'landlords',
  localField: 'landlordIds',
  foreignField: '_id',
  as: 'landlords',
},
{ $unwind: '$landlords' },
{ $sort: { 'landlords.fullName': 1, expiritionDate: 1 } }

此代码按fullName字段排序,第二个参数不适用。为什么这样 ? 合同集合enter image description here

房东enter image description here

0 个答案:

没有答案