次のデータを検討する:
db.col.save({ a: "111"})
db.col.save({ a: "112"})
db.col.save({ a: "113"})
db.col.save({ a: "114"})
AggregationFrameworkのindex
を取得するには 財産。次に、 $sort
を実行できます。 そのプロパティで、 $project
を使用します 一時フィールドを削除します。試してみてください:
db.col.aggregate([
{
$match: { a: { $in: ["112", "111", "113"] } }
},
{
$addFields: {
index: { $indexOfArray: [ ["112", "111", "113"], "$a" ] }
}
},
{
$sort: { index: 1 }
},
{
$project: { index: 0, _id: 0 }
}
])
出力:
{ "a" : "112" }
{ "a" : "111" }
{ "a" : "113" }