Promise Chain似乎没有继续下去

时间:2017-09-02 16:57:57

标签: javascript node.js promise

我正试图让我的承诺链在我的快递帖子中工作,但似乎无法弄清楚为什么它不起作用,即使我之前已经这样做了。

我添加了许多日志以跟踪它停止的位置,并且它似乎在验证解决后停止,不会继续

无极:

    router.post('/auth/token', function (req, res) {
      var schema = require('./schema/token.js');

      var data = {
        username: req.body.username,
        password: req.body.password
      };

      new Promise(function (resolve, reject) {
        logger.info(`Validating request..`);
        return validator.validate(schema, data);
      }).then(function () {
        logger.info(`Getting token..`);
        return authentication.getToken(data.username, data.password);
      }).then(function (result) {
        logger.info(`Received token..`);
        res.send(result);
      }).catch(function (err) {
        logger.info(`Unable to receive token..`);
        res.send(err);
      })
  })

Validator.js:

module.exports.validate = function (schema, data) {
    return new Promise(function(resolve, reject){
        logger.info(`Loading schema..`);
        if (!schema) {
            logger.info(`Missing schema, rejecting promise..`);
            return reject(new Error('Missing schema'));
        }

        const ajv = new Ajv({ v5: true, allErrors: true });

        logger.info(`Compling schema..`);
        const validate = ajv.compile(schema);
        logger.info(`Validating schema..`);
        const valid = validate(data);

        if (!valid) {
            const errors = validate.errors.map((error) => `${error.dataPath.replace('.', '')}: ${error.message}`);
            const err = new Error(errors);
            return reject(err);
        }

        logger.info(`Valid schema.. resolving..`);
        return resolve();
    })
}

当我运行时...日志说明如下:

info: Validating request..
info: Loading schema..
info: Compling schema..
info: Validating schema..
info: Valid schema.. resolving..

不再继续,它应该继续下一个承诺,现在如果我改变第一个承诺并强制解决并拒绝,它会起作用但据我所知,这不应该是必需的,因为验证返回了承诺,我没有收到任何错误

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

不要创建新的承诺,使用来自validate的承诺;请参阅下面的***

router.post('/auth/token', function (req, res) {
    var schema = require('./schema/token.js');

    var data = {
      username: req.body.username,
      password: req.body.password
    };

    logger.info(`Validating request..`);      // ***
    validator.validate(schema, data)          // ***
    .then(function () {
      logger.info(`Getting token..`);
      return authentication.getToken(data.username, data.password);
    }).then(function (result) {
      logger.info(`Received token..`);
      res.send(result);
    }).catch(function (err) {
      logger.info(`Unable to receive token..`);
      res.send(err);
    })
})

问题是您永远无法解决您创建的新承诺。但是,既然你已经拥有一个新的诺言,没有充分的理由去创造新的诺言,那么解决方案就是使用你拥有的诺言。