MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Ordina un array e aggiungi un campo di classificazione in MongoDB

Penso che il tuo metodo sia buono, ma cambia semplicemente results.length a user.length ma se vuoi usare l'operazione mongoDB fai così:

db.collection.aggregate([
  {
    "$sort": {
      "score": -1
    }
  },
  {
    "$group": {
      "_id": "",
      "items": {
        "$push": "$$ROOT"
      }
    }
  },
  {
    "$unwind": {
      "path": "$items",
      "includeArrayIndex": "items.rank"
    }
  },
  {
    "$replaceRoot": {
      "newRoot": "$items"
    }
  },
  {
    "$sort": {
      "score": -1
    }
  }
])

puoi usare lean() e select alcuni campi in find query per aumentare le prestazioni

async findRank() {
  const users = await User.find({},"_id score").sort({score: -1}).lean()
  for (let index = 0; index < users.length; index++) {
    users[index].rank = index
  }
  return users
}
if you want group by the documents based on name or score ... it's better use mongodb operation