인용
class MyError extends Error {
constructor(message) {
super(message);
this.message = message;
this.name = 'MyError';
}
}
전화 this.stack = (new Error()).stack;
덕분 에 트릭이 필요하지 않습니다 super()
.
위의 코드는 Babel 에서 this.stack = (new Error()).stack;
또는 Error.captureStackTrace(this, this.constructor.name);
호출 되지 않으면 스택 추적을 출력 할 수 없지만 . IMO, 여기에 하나의 문제가 있습니다.
사실, 스택 추적에서 출력을 할 수 있습니다 Chrome console
및 Node.js v4.2.1
이 코드 조각으로.
class MyError extends Error{
constructor(msg) {
super(msg);
this.message = msg;
this.name = 'MyError';
}
};
var myerr = new MyError("test");
console.log(myerr.stack);
console.log(myerr);
의 출력 Chrome console
.
MyError: test
at MyError (<anonymous>:3:28)
at <anonymous>:12:19
at Object.InjectedScript._evaluateOn (<anonymous>:875:140)
at Object.InjectedScript._evaluateAndWrap (<anonymous>:808:34)
at Object.InjectedScript.evaluate (<anonymous>:664:21)
출력 Node.js
MyError: test
at MyError (/home/bsadmin/test/test.js:5:8)
at Object.<anonymous> (/home/bsadmin/test/test.js:11:13)
at Module._compile (module.js:435:26)
at Object.Module._extensions..js (module.js:442:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:311:12)
at Function.Module.runMain (module.js:467:10)
at startup (node.js:134:18)
at node.js:961:3