【发布时间】:2016-05-23 19:31:00
【问题描述】:
过去几天我一直在努力完成追随,但我无法解决。我觉得我什么都试过了。所以这里...
我的路线有一个 JSON 对象,其中包含创建新测验的所有信息。 换句话说 - 一个包含有关新测验的信息的对象,一个问题数组,其中每个问题都包含一个答案数组。
我使用 async.js 瀑布函数,并且想做以下事情:
将新测验保存到数据库,并将从数据库返回的新测验 ID 传递给下一个瀑布函数
遍历每个问题。缓存从数据库返回的新问题 ID,并将它们传递给下一个瀑布函数。这里的问题是缓存 ID。由于该函数是异步的,因此我无法将结果缓存到任何地方以用于下一个函数...
遍历每个答案,并将它们保存到 DB
这就是我所拥有的:
router.post('/quiz/create', function (req, res) {
// JSON object with the new Quiz
var json = req.body;
async.waterfall([
function(callback) {
// Returns a Quiz ID for the new quiz, and passes it to the next waterfall function
db.createQuiz(json, function(err, result) {
// ID returned from DB is formatted as [{'': id}], hence result[0]['']
callback(null, result[0]['']);
});
},
function(quizID, callback) {
// Loop through each question in the quiz
async.forEachSeries(json.questions, function(question, callback) {
// Save the question to DB, and get the new question ID returned
db.createQuestion(question, quizID, function(err, result) {
// TODO: cache the new question ID's in an array somewhere to be passed to the next waterfall function
// Start next iteration of the loop
callback();
});
}, function(err) {
// Done with all questions. Pass question ID's to next function
callback(null, cachedQuestionIDs);
});
},
function(cachedQuestionIDs, callback) {
// TODO: access the question ID's, and use them to loop through and save answers to DB
}
], function(err, result) {
res.json({
success: true,
message: 'Quiz created!'
});
});
});
【问题讨论】:
标签: javascript node.js asynchronous async.js