6

我正在尝试使用 Bluebird.js 的自定义错误处理程序。

在下面的示例中,调用的是包罗万象的处理程序,而不是 MyCustomError 处理程序,但是当我将拒绝移动到then函数(并解决了 firstPromise...)时,调用了 MyCustomError 处理程序。这是为什么?有什么问题吗?谢谢。

var Promise = require('bluebird'),
debug = require('debug')('main');

firstPromise()
    .then(function (value) {
      debug(value);
    })
    .catch(MyCustomError, function (err) {
      debug('from MyCustomError catch: ' + err.message);
    })
    .catch(function (err) {
      debug('From catch all: ' + err.message);
    });

/*
 * Promise returning function.
 * */
function firstPromise() {
  return new Promise(function (resolve, reject) {
    reject(new MyCustomError('error from firstPromise'));
  });
}
/*
 *  Custom Error
 * */
function MyCustomError(message) {
  this.message = message;
  this.name = "MyCustomError";
  Error.captureStackTrace(this, MyCustomError);
}
MyCustomError.prototype = Object.create(Error.prototype);
MyCustomError.prototype.constructor = MyCustomError;
4

1 回答 1

4

在其他任何事情之前声明错误类,它将起作用(原型分配未提升)

于 2014-07-15T11:42:18.853 回答