如何在es6类中编写箭头函数?

时间:2018-04-04 12:50:33

标签: node.js ecmascript-6

class ExampleClass{
   constructor(){
   }
   method1 = () =>{
       /* code
       */
   }
}

对于上面的代码,我收到错误

method1 = () => {`
        ^
  

SyntaxError:意外的令牌=

1 个答案:

答案 0 :(得分:2)

目前还没有类实例字段native support。你最好的选择是使用像Babel这样的语言转换器support