How to use aggregrate in mongodb to $match _id

前端 未结 3 1319
天涯浪人
天涯浪人 2020-12-15 17:39

Document:

{
    \"_id\" : ObjectId(\"560c24b853b558856ef193a3\"),
    \"name\" : \"Karl Morrison\",
    \"pic\" : \"\",
    \"language\" : ObjectId(\"560c24b         


        
3条回答
  •  醉梦人生
    2020-12-15 18:41

    const ObjectId = mongoose.Types.ObjectId;
    const User = mongoose.model('User')
    
    User.aggregate([
      {
        $match: { _id: ObjectId('560c24b853b558856ef193a3') }
      }
    ])
    

提交回复
热议问题