我陷入异步算法:
我有一系列猫鼬模型:
var allRefDatasSchemas = {
RefAllotement: mongoose.model('RefAllotement', RefDataSchema),
RefModeleConstructeur: mongoose.model('RefModeleConstructeur', RefDataSchema),
RefTypeKit: mongoose.model('RefTypeKit', RefDataSchema),
RefTypeUtilisation: mongoose.model('RefTypeUtilisation', RefDataSchema),
};
我想抓住每个集合中的所有项目并将它们放在一个数组或类似的东西中。
如果我这样做,this
回调的find
关键字不会引用当前模型,
所以我不可能知道哪些模型项属于
var results = {};
for (var model in allRefDatasSchemas) {
allRefDatasSchemas[model].find(function(err, data) {
// I'd like to do something like that :
// but this.modelName is null, because it isn't the model
// on which the find is done.
results[this.modelName] = data;
// if I use "model" variable, it doesn't work, because asynchronous callback
});
}
我还尝试async库但没有成功,因为我总是回到同一个问题:无法知道哪个模型在回调中执行查询查询。
如果我使用承诺,则then
中的同意。
请帮帮我:)你会怎么做?
EDIT model.find调用query.find,query.find调用mquery.find。在mquery.find中,调用回调,通过丢失this引用的那个时间:this._collection.find(conds,options,utils.tick(callback)); / EDIT
答案 0 :(得分:3)
请检查此代码段,我已经提供了您需要的工作示例。 请检查代码中的注释以便更好地理解。
Sample Working code类似于您的要求。使用与mongoose异步的另一个ref ques。
/*
* Object to store all models
*/
var allRefDatasSchemas = {
RefAllotement: mongoose.model('RefAllotement', RefDataSchema),
RefModeleConstructeur: mongoose.model('RefModeleConstructeur', RefDataSchema),
RefTypeKit: mongoose.model('RefTypeKit', RefDataSchema),
RefTypeUtilisation: mongoose.model('RefTypeUtilisation', RefDataSchema),
};
/*
* need an array to run all queries one by one in a definite order using async waterfall mwthod
*/
var arr = [];
for(each in allRefDatasSchemas) {
arr.push(each);
}
/*
* Callback function for initiation of waterfall
*/
var queue = [
function(callback) {
// pass the ref array and run first query by passing starting index - 0
callback(null, arr, 0)
}
];
/*
* Object to store result of all queries
*/
var finalResult = {};
/*
* Generic Callback function for every dynamic query
*/
var callbackFunc = function(prevModelData, currentIndex, callback) {
allRefDatasSchemas[arr[currentIndex]].find(function(err, result) {
if(err) {
console.log(err)
} else {
// Your Query
//
// I'd like to do something like that :
// but this.modelName is null, because it isn't the model
// on which the find is done.
// arr[currentIndex] will point to
// RefAllotement, RefModeleConstructeur etc. as you required
finalResult[arr[currentIndex]] = result
// send current result to next interation if required or you can skip
// and increment the currentIndex to call next query
callback(null, result, currentIndex + 1)
}
})
}
/*
* Add callback function for every dynamic query
*/
for(each in allRefDatasSchemas) {
queue.push(callbackFunc);
}
/*
* Run all dynamic queries one by one using async.js waterfall method
*/
async.waterfall(queue, function (err, result) {
// Final object with result of all the queries
console.log('finish', finalResult)
});
输出将采用此格式
finish { RefAllotement:[
// Result of RefAllotement query
],
RefModeleConstructeur:[
// Result of RefModeleConstructeur query
],
RefTypeKit:[
// Result of RefTypeKit query
],
RefTypeUtilisation:[
// Result of RefTypeUtilisation query
]
}