如何在 Mongoose.js + MongoDB 中执行此查询?
我有一个简单的模式,其中评级按用户 ID 存储,以避免重复。对于给定对象的读写,这很好用。但是,我如何查询 MongoDB 以获取特定查看者对其进行评分的所有项目?
例如,这在 MongoDB shell 中运行良好:
db.items.find({ratings.52126672b9f5bd670b000001: {$exists: true}})
但我想像这样在 Node.js + Mongoose.js 中以编程方式查询这个,
var user_id = req.params.id;
Item.find({ ratings.user_id : {$exists: true}}, function(err, items) { ... });
我被难住的地方是 Mongoose.js 对内部对象采用点符号,但这解释user_id
为文字,而 Mongoose.js 不对内部对象采用方括号符号。
这是一个示例模式;
var ItemSchema = new mongoose.Schema({
name: { type: String, required: true },
ratings: { type: mongoose.Schema.Types.Mixed}
});
以及此类数据的示例:
[ {
name: "Toaster",
ratings: {
"52126672b9f5bd670b000001": 1,
"52155b39a411791c29000001": -1
}
},
{
name: "Griddle",
ratings: {
"52126672b9f5bd670b000001": 1,
"52126672b9f5bd670b000001": 1"
}
}
}