14
ES6 구문 및 Babel을 사용하여 Javascript에서 오류 확장
ES6 및 Babel에서 오류를 확장하려고합니다. 작동하지 않습니다. class MyError extends Error { constructor(m) { super(m); } } var error = new Error("ll"); var myerror = new MyError("ll"); console.log(error.message) //shows up correctly console.log(myerror.message) //shows empty string Error 객체는 올바른 메시지 세트를 얻지 못합니다. Babel REPL에서 시도하십시오 . 이제 SO에 대한 몇 …