用mongoose对子文档进行排序

时间:2016-11-21 07:42:38

标签: angularjs node.js mongodb mongoose

var fileSchema = mongoose.Schema({
    type            : String,
    batch           : String,
    client          : String,
    id              : Number,
    name            : String,
   }, { collection: 'attest' });

var userSchema = mongoose.Schema({
        name         : String,
        email        : String,
        password     : String,
        role         : String,
        files        : [fileSchema]
    }, { collection: 'attest' });

这是我拥有的两个父和子模式。如何对"文件进行排序"基于"类型"领域?类型字段不断变化,因此排序时填充不会有帮助。我正在使用expressjs和angular

0 个答案:

没有答案