var TheMovieDb = require('themoviedb');
var moviedbClient = new TheMovieDb('*****');
var movieJson = require("./seedMovieDB/movieName.json");
var MovieEntry = require('./movie.model');
var movieApi = new TheMovieDb('1b3819c5f61aaef99edf4c47a5de46f4', 'en');
var P = require('bluebird');
var _ = require('underscore');
var moviedb = module.exports = {
indexMovie : function indexMovie(){
MovieEntry.removeAsync({})
.then (function() {
_.each(movieJson, function(val, key, cb){
movieApi.searchMovies(val.name).then (function(mDetails) {
if(mDetails !== undefined){
_.each(mDetails , function(val, key, cb){
var m = new MovieEntry({
id: val.id,
title : val.title,
originalTitle : val.originalTitle,
year : val.year,
popularity : val.popularity,
voteAverage : val.voteAverage,
votes : val.votes,
isAdult : val.isAdult,
video : val.video,
poster : val.poster,
backdrop : val.backdrop,
});
m.save(function(err, movie_saved){
if(err){
console.log(err);
}else{
console.log("saved");
}
});
})
}
}).catch(function(err){
if(err){
console.log(err);
}
});
});
});
}
}
我想要返回一个承诺或者其他东西,这将确保一旦我的每次调用,即asyn searchMovie调用,都结束了,然后我可以使用.then()从数据库中检索我的东西我存储在代码中。 我是新的承诺,不知道如何做到这一点。 我有一个调用indexMovie函数的控制器,一旦调用结束,我想从数据库中检索保存的值。
答案 0 :(得分:3)
使用Promise.each
代替_.each
等待异步操作。如果操作不相关,请使用Promise.map
,以便它们可以同时执行。
首先 - 正确的解决方案是让你的db调用批量执行查询,而不是100次查询API 100次,查询一次。 movieApi.searchMovies(val.name)
应该有一个适用于多个值的movieApi.searchMovies(...arrr)
替代方案,依此类推。
那就是说,主要部分变成了:
return Promise.map(movieJson, x => searchMovies(x.name)).map(x =>
new MovieEntry(val);
).map(x =>
x.save()
).then(x =>
console.log("All Done!")
).catch(e => {
console.error("Error somewhere", e);
throw e;
});
答案 1 :(得分:-2)
只需在每个
的末尾添加 promise()。done(function(){)var moviedb = module.exports = {
indexMovie : function indexMovie(){
MovieEntry.removeAsync({})
.then (function() {
_.each(movieJson, function(val, key, cb){
movieApi.searchMovies(val.name).then (function(mDetails) {
if(mDetails !== undefined){
_.each(mDetails , function(val, key, cb){
var m = new MovieEntry({
id: val.id,
title : val.title,
originalTitle : val.originalTitle,
year : val.year,
popularity : val.popularity,
voteAverage : val.voteAverage,
votes : val.votes,
isAdult : val.isAdult,
video : val.video,
poster : val.poster,
backdrop : val.backdrop,
}).promise().done(function(){
//the stuff you need
});
m.save(function(err, movie_saved){
if(err){
console.log(err);
}else{
console.log("saved");
}
});
})
}
}).catch(function(err){
if(err){
console.log(err);
}
});
});
});
}