mongoose查询.where /。和.populate之后

时间:2015-11-19 17:02:15

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

我需要测试用户是否具有给定的id,具有指定id的项目和具有给定名称的角色。

var UserSchema = new Schema({
    roles: [{
            project: {
                    type: mongoose.Schema.Types.ObjectId,
                    ref: 'Project',
            },
            role: {
                    type: mongoose.Schema.Types.ObjectId,
                    ref: 'Role',
            }
    }]
});

var RoleSchema = new Schema({
    name: {
            type: String
    }
});

我试着.populate然后申请.where,但是。Where什么也没做 在填充之后使用。和也不起作用。

如何在mongodb / mongoose中解决这个问题?

谢谢!

// EDIT 现在我有类似的东西,它不起作用(.where什么也没做),它真的不漂亮:

    User.findById(userId)
    .populate({
        path: 'roles.role',
        match: { 'name': roleName}
    })
    .where('roles.project').equals(projectId)
    .exec(function(err, data){
        data.roles = data.roles.filter(function(f){
            return f.role;
        })
        if(!err){
            if(data){
                if(data.roles.length == 1) {
                    return true;
                }
            }
        }
        return false;
    });

当我做Kevin B所说的话时:

  Role.findOne({name: roleName}, function(err, data){
    if(!err){
        if(data){
            User.findById(userId)
                .and([
                    {'roles.project': projectId},
                    {'roles.role': data._id}
                ])
                .exec(function(err2, data2){
                    if(!err2){
                        if(data2){
                            console.log(data2);
                        }
                    }
            });
        }
    }
});

.and查询在这里什么都不做......

1 个答案:

答案 0 :(得分:0)

现在我只是在程序而不是数据库中进行比较。

User.findById(userId)
.populate('roles.role')
.exec(function(err, data){
    if(!err){
        if(data){
            if(data.roles.find(function(element, index, array){
                return element.project == projectId && element.role.name == roleName;
            }))
                return callback(true);
        }
    }
    return callback(false);
});