Mongoosejs - 过滤掉填充结果

时间:2017-09-24 15:20:12

标签: node.js mongodb express mongoose mongoose-populate

我想返回所有聊天对话,其中登录用户(user_id)是参与者。

我想填充参与者只返回profile.firstname(可能稍后其他一些),然后我想过滤掉参与者,以便它不会带回参与者数组中的loggedInUser(user_id)。

chat.controller.js INDEX

 Chat.find({participants: user_id})
            .populate('participants', {
                select: 'profile.firstname',
                where('_id').ne(user_id) // This need to change
            })
            .exec(function (err, chats) { });

chat.model.js

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

let ChatSchema = new Schema({

        participants: [{
            type: Schema.Types.ObjectId, ref: 'User'
        }],

        messages: [{
            type: Schema.Types.ObjectId, ref: 'Message'
        }],

    },
    {
        timestamps: {createdAt: 'created_at', updatedAt: 'updated_at'}
    });

module.exports = mongoose.model('Chat', ChatSchema);

2 个答案:

答案 0 :(得分:2)

根据populate documentation,这可以通过"匹配"来实现。选项。

在你的情况下,答案是:

Chat.find({participants: user_id})
        .populate('participants', {
            select: 'profile.firstname',
            match: { _id: {$ne: user_id}}
        })
        .exec(function (err, chats) { });

答案 1 :(得分:0)

猫鼬populate() documentation进行了一些更改。解决方案应该是

Chat.find({
        participants: user_id
    })
    .populate({
        path: 'participants'
        select: 'profile.firstname',
        match: {
            _id: {
                $ne: user_id
            }
        }
    })
    .exec(function(err, chats) {});