MongoDB的$in子句保证订单当使用MongoDB时$in子句,返回的文档的顺序总是与数组参数的顺序相对应吗?
3 回答
当年话下
TA贡献1890条经验 获得超9个赞
var order = [ "David", "Charlie", "Tess" ];
var query = [ {$match: {name: {$in: order}}}, {$addFields: {"__order": {$indexOfArray: [order, "$name" ]}}}, {$sort: {"__order": 1}} ];var result = db.users.aggregate(query);
“$addField”阶段在3.4中是新的,它允许您在不了解所有其他现有字段的情况下对现有文档“$project”新字段。新的“$indexOfArray”表达式返回给定数组中特定元素的位置。
addToSet
order
order
繁星淼淼
TA贡献1775条经验 获得超11个赞
aggregate
find
array#sort
:
$in
var ids = [4, 2, 8, 1, 9, 3, 5, 6];MyModel.find({ _id: { $in: ids } }).exec(function(err, docs) { docs.sort(function(a, b) { // Sort docs by the order of their _id values in ids. return ids.indexOf(a._id) - ids.indexOf(b._id); });});
$in
ObjectId
indexOf
Array#findIndex
ObjectID#equals
sort
docs.sort((a, b) => ids.findIndex(id => a._id.equals(id)) - ids.findIndex(id => b._id.equals(id)));
findIndex
:
docs.sort(function (a, b) { return _.findIndex(ids, function (id) { return a._id.equals(id); }) - _.findIndex(ids, function (id) { return b._id.equals(id); });});
- 3 回答
- 0 关注
- 1803 浏览
添加回答
举报
0/150
提交
取消