自定义错误格式

时间:2015-11-18 22:09:47

标签: javascript node.js

我已经实现了自己的自定义错误:

function MyError() {
    var temp = Error.apply(this, arguments);
    temp.name = this.name = 'MyError';
    this.stack = temp.stack;
    this.message = temp.message;
}

MyError.prototype = Object.create(Error.prototype, {
    constructor: {
        value: MyError,
        writable: true,
        configurable: true
    }
});

我缺少的是让它在屏幕上显示,就像发生常规的无法错误时一样,即如果我们throw new Error('Hello!'),我们得到输出:

throw new Error('Hello!');
^

Error: Hello!
    at Object.<anonymous> (D:\NodeJS\tests\test1.js:28:7)
    at Module._compile (module.js:425:26)
    at Object.Module._extensions..js (module.js:432:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:313:12)
    at Function.Module.runMain (module.js:457:10)
    at startup (node.js:138:18)
    at node.js:974:3

现在,当我这样做时,我想要同样格式良好的输出:

try {
    throw new MyError("Ops!");
} catch (e) {
    console.log(e);
}

但我得到了:

{ [MyError: Ops!]
  name: 'MyError',
  stack: 'MyError: Ops!\n    at MyError.Error (native)\n    at new MyError (D:\\NodeJS\\tests\\test1.js:2:22)\n    at Object.<anonymous> (D:\\NodeJS\\tests\\test1.js:22:11)\n    at Module._compile (module.js:425:26)\n    at O
bject.Module._extensions..js (module.js:432:10)\n    at Module.load (module.js:356:32)\n    at Function.Module._load (module.js:313:12)\n    at Function.Module.runMain (module.js:457:10)\n    at startup (node.js:138:18)\n
at node.js:974:3',
  message: 'Ops!' }

还需要做些什么才能让console.log(e)自动为MyError输出格式相同的精美呈现,而不必使用明确的e.stack引用?

更新:首先,我看到了一些关于方法toJSON的建议,我做了,但它没有奏效。我假设console.log必须有一个可覆盖的方法来格式化错误对象,但它是什么呢?

4 个答案:

答案 0 :(得分:2)

您应该覆盖toJSON,而不是覆盖toString方法(或者,inspect,这是在尝试console.log对象时使用的V8。

例如:

MyError.prototype.inspect = function () {
    return this.stack;
};

应该可以做到这一点。

答案 1 :(得分:0)

试试这个

try {
  throw new MyError("Ops!");
} catch (e) {
  console.log(e.stack);
}

如果您在浏览器的控制台中执行此代码,它将显示如下:

MyError: Ops!
  at MyError.Error (native)
  at new MyError (<anonymous>:3:22)
  at <anonymous>:18:11
  at Object.InjectedScript._evaluateOn (<anonymous>:875:140)
  at Object.InjectedScript._evaluateAndWrap (<anonymous>:808:34)
  at Object.InjectedScript.evaluate (<anonymous>:664:21)

如果我理解你想要的是打印错误的堆栈吗?

答案 2 :(得分:0)

我编写了一个处理 uncaughtException 错误的函数,以便服务器不会因未处理的错误而停止。

<强>功能

function errorHandler (){
  process.on('uncaughtException', function (err) {
    console.log(err); // Displays the Error;
    console.error((new Date).toUTCString() + ' uncaughtException:', err.message); // Displays the Date and Error Message.
    console.error(err.stack);  // Stack in Which the error occurred.
  });
}

<强>输出

ISODate("2015-07-28T04:56:20.000Z") uncaughtException: Cannot read property 'asset' of undefined

TypeError: Cannot read property 'asset' of undefined\n
 at /Path/file.js:31:31\n
 at /path/node_modules/mongodb/lib/mongo_client.js:436:11\n    
 at process._tickDomainCallback (node.js:463:13)

希望这有助于。

答案 3 :(得分:0)

不太推荐,但您可以随时挂钩console.log处理程序:

var oldhandler = console.log;
console.log = function () {
    if (typeof(arguments[0].stack) != "undefined" && arguments[0] instanceof(Error) && typeof(arguments[0].stack) != "undefined") {
        oldhandler.apply(console,[arguments[0].stack]);
    } else {
        oldhandler.apply(console,arguments);
    }                                                                                                                              
}

try {
    throw new Error("qweqew");
} catch (ex) {
    console.log(ex);
}

小提琴:http://jsfiddle.net/xagpf5ff/