1
我的回調地獄航線正常工作......如何重寫回調地獄成諾言?
var myCallbackHell = router.route('/');
myCallbackHell.get(function(req, res, next) {
bookModel.find({title: "Animal Farm"}).then(function(book) {
movieModel.find({title: "Intouchables"}).then(function(movie) {
gameModel.find({title: "The Last of Us"}).then(function(game) {
res.render('index', {book_found: book, movie_found: movie, game_found: game});
});
});
});
});
但是我想用承諾。任何幫助,提示?
不止回調地獄你的代碼看起來像一個承諾地獄。 – Redu