1. 程式人生 > >解決關於:TypeError: Class constructor Model cannot be invoked without 'new'

解決關於:TypeError: Class constructor Model cannot be invoked without 'new'

conf 版本 onf 過程 疑問 nds extends blog 工作過程

問題描述:在工作過程中出現 TypeError: Class constructor Model cannot be invoked without ‘new‘ 這個錯誤

以下是報錯代碼:

class Users extends father{

   constructor(data){
   super(data);
   }

   ····
}

版本信息

npm 5.0.3

node 8.9.0

錯誤原因:

es版本為 es2015 es5

解決方案:

打開 tsconfig.json文件

將es5 es2015 替換為es6 重新編譯

此隨筆乃本人學習工作記錄,如有疑問歡迎在下面評論,轉載請標明出處。

如果對您有幫助請動動鼠標右下方給我來個贊,您的支持是我最大的動力。

解決關於:TypeError: Class constructor Model cannot be invoked without 'new'