【问题标题】:Mongoose, sort query by populated fieldMongoose,按填充字段排序查询
【发布时间】:2012-07-15 19:28:49
【问题描述】:

据我所知,可以使用 Mongoose (source) 对填充的文档进行排序。

我正在寻找一种按一个或多个填充字段对查询进行排序的方法。

考虑这两个 Mongoose 模式:

var Wizard = new Schema({
    name  : { type: String }
, spells  : { [{ type: Schema.ObjectId, ref: 'Spell' }] }
});

var Spell = new Schema({
    name    : { type: String }
,   damages : { type: Number }
});

示例 JSON:

[{
    name: 'Gandalf',
    spells: [{
            name: 'Fireball',
            damages: 20
        }]
}, {
    name: 'Saruman',
    spells: [{
            name: 'Frozenball',
            damages: 10
        }]
}, {
    name: 'Radagast',
    spells: [{
            name: 'Lightball',
            damages: 15
        }]
}]

我想按照他们的法术伤害对这些巫师进行排序,使用类似的方法:

WizardModel
  .find({})
  .populate('spells', myfields, myconditions, { sort: [['damages', 'asc']] })
// Should return in the right order: Saruman, Radagast, Gandalf

我实际上是在查询后手动进行这些排序并希望对其进行优化。

【问题讨论】:

  • 您使用的是什么版本的 Mongoose?我知道排序语法在 3.0 中发生了很大变化。
  • 我使用的是 Mongoose 2.5.14。两天后我有一个重要的项目演示,所以我不会冒险更新我的堆栈。

标签: javascript node.js mongodb sorting mongoose


【解决方案1】:

您可以仅显式指定填充方法的必需参数:

WizardModel
  .find({})
  .populate({path: 'spells', options: { sort: [['damages', 'asc']] }})

看看http://mongoosejs.com/docs/api.html#document_Document-populate 这是上面链接中的一个示例。

doc
.populate('company')
.populate({
  path: 'notes',
  match: /airline/,
  select: 'text',
  model: 'modelName'
  options: opts
}, function (err, user) {
  assert(doc._id == user._id) // the document itself is passed
})

【讨论】:

【解决方案2】:

尽管这是一篇相当老的帖子,但我想通过 MongoDB 聚合查找管道分享一个解决方案

重要的是:

 {
      $lookup: {
        from: 'spells',
        localField: 'spells',
        foreignField:'_id',
        as: 'spells'
      }
    },
    {
      $project: {
        _id: 1,
        name: 1,
        // project the values from damages in the spells array in a new array called damages
        damages: '$spells.damages',
        spells: {
          name: 1,
          damages: 1
        }
      }
    },
    // take the maximum damage from the damages array
    {
      $project: {
        _id: 1,
        spells: 1,
        name: 1,
        maxDamage: {$max: '$damages'}
      }
    },
    // do the sorting
    {
      $sort: {'maxDamage' : -1}
    }

在下面找到一个完整的例子

'use strict';

const mongoose = require('mongoose');
const Schema = mongoose.Schema;

mongoose.connect('mongodb://localhost/lotr');

const db = mongoose.connection;

db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', () => {



  let SpellSchema = new Schema({
    name    : { type: String },
    damages : { type: Number }
  });

  let Spell = mongoose.model('Spell', SpellSchema);

  let WizardSchema = new Schema({
    name: { type: String },
    spells: [{ type: Schema.Types.ObjectId, ref: 'Spell' }]
  });

  let Wizard = mongoose.model('Wizard', WizardSchema);

  let fireball = new Spell({
    name: 'Fireball',
    damages: 20
  });

  let frozenball = new Spell({
    name: 'Frozenball',
    damages: 10
  });

  let lightball = new Spell({
    name: 'Lightball',
    damages: 15
  });

  let spells = [fireball, frozenball, lightball];

  let wizards = [{
    name: 'Gandalf',
    spells:[fireball]
  }, {

    name: 'Saruman',
    spells:[frozenball]
  }, {
    name: 'Radagast',
    spells:[lightball]
  }];

  let aggregation = [
    {
      $match: {}
    },
    // find all spells in the spells collection related to wizards and fill populate into wizards.spells
    {
      $lookup: {
        from: 'spells',
        localField: 'spells',
        foreignField:'_id',
        as: 'spells'
      }
    },
    {
      $project: {
        _id: 1,
        name: 1,
        // project the values from damages in the spells array in a new array called damages
        damages: '$spells.damages',
        spells: {
          name: 1,
          damages: 1
        }
      }
    },
    // take the maximum damage from the damages array
    {
      $project: {
        _id: 1,
        spells: 1,
        name: 1,
        maxDamage: {$max: '$damages'}
      }
    },
    // do the sorting
    {
      $sort: {'maxDamage' : -1}
    }
  ];
  Spell.create(spells, (err, spells) => {
    if (err) throw(err);
    else {
      Wizard.create(wizards, (err, wizards) =>{
        if (err) throw(err);
        else {
          Wizard.aggregate(aggregation)
          .exec((err, models) => {
            if (err) throw(err);
            else {
              console.log(models[0]); // eslint-disable-line
              console.log(models[1]); // eslint-disable-line
              console.log(models[2]); // eslint-disable-line
              Wizard.remove().exec(() => {
                Spell.remove().exec(() => {
                  process.exit(0);
                });
              });
            }
          });
        }
      });
    }
  });
});

【讨论】:

    【解决方案3】:

    这是 mongoose 文档的示例。

    var PersonSchema = new Schema({
        name: String,
        band: String
    });
    
    var BandSchema = new Schema({
        name: String
    });
    BandSchema.virtual('members', {
        ref: 'Person', // The model to use
        localField: 'name', // Find people where `localField`
        foreignField: 'band', // is equal to `foreignField`
        // If `justOne` is true, 'members' will be a single doc as opposed to
        // an array. `justOne` is false by default.
        justOne: false,
        options: { sort: { name: -1 }, limit: 5 }
    });
    

    【讨论】:

      猜你喜欢
      • 2015-09-19
      • 2019-10-19
      • 2013-07-06
      • 2021-11-03
      • 1970-01-01
      • 2021-04-19
      • 2015-01-10
      • 2012-01-22
      • 2017-02-07
      相关资源
      最近更新 更多