我在NodeJS中使用猫鼬,并且有一个子数组的ID。我的模型是这样定义的:

var thingSchema = new schema({
    thingId: String,
    smallerThings : [smallerThingsSchema]
});

var smallerThingsSchema = new schema({
    smallerThingId: String,
    name : String,
    anotherName : String
});


我有smallerThingId,但我想获取thingId

现在,我有一个for循环,看起来像这样(我想效率很低)。可能有100,000种东西。

//Find all things
thingModel.find({}, null, function (error, things) {
    if (error) {
        callback(error);
    }
    else {
        //Go through all things
        for(var i = 0; i < things.length; i++){
            //check if a thing with the array of smaller things matches the id
            for(var j = 0; j<things[i].smallerThings.length; j++){
                if(things[i].smallerThings[j].id === smallerThingId){
                    //return it
                    return things[i];
                }
            }
        }
    }
});


感谢您提供的任何帮助或我可以在其中找到(docs / blog / other)来学习如何处理这种情况。

最佳答案

要按子文档ID获取文档,可以使用以下代码:

thingModel.find({"smallerThings.smallerThingId":smallerThingId}, null, function (error, things) {

});


这将返回具有“ smallerThingId”的文档。

10-01 11:09