警告:在处理程序中创建了一个promise,但是没有使用Bluebird返回Node JS

时间:2017-01-09 14:21:36

标签: javascript node.js promise bluebird

我收到的错误似乎表明我没有回复我的一些陈述,但我认为我正确地做了一切。这是警告:

Warning: a promise was created in a handler at /src/api/podcasts.js:51:18 but was not returned from it

这是相关函数的代码:

 'findPodcastById': (db, podcastId, callback) => {
    var queryString = "SELECT * FROM podcasts WHERE id=$1;";
    return db.one(queryString, [podcastId])
      .then((result) => {
        return callback(null, result);
      })
      .catch((err) => {
        return callback(err, null);
      });
  },

以下是父函数中的完整系列回调:

app.post('/getepisodes', (req, res, next) => {
  var podcastId = req.body.podcastId;
  var userId = req.body.userId;
  var podcast;
  podcasts.findPodcastByIdAsync(db, podcastId)
    .then((result) => {
      podcast = result;
      return request(podcast.rss);
    })
    .then((result) => {
      return podcastParser.parseAsync(result, {})
    })
    .then((result) => {
      return Promise.resolve(result.channel.items);
    })
    .map((item) => {
      var date = new Date(item.pubDate).toLocaleString();
      return podcasts.addEpisodeAsync(db, podcast.id, item.title, item.enclosure.url.split('?')[0], striptags(item.description), date, item.duration);
    })
    .map((episode) => {
      return posts.addPostAsync(db, 'podcast', episode.id, episode.title, episode.description);
    })
    .then(() => {
      return podcasts.findEpisodesByPodcastIdAsync(db, podcastId, userId);
    })
    .then((result) => {
      return res.json(result);
    })
    .catch((err) => {
      next(err);
    });
});

每个承诺栏中都有一个退货声明,所以我不确定我哪里出错了。

0 个答案:

没有答案