标签: node.js ecmascript-6
class ExampleClass{ constructor(){ } method1 = () =>{ /* code */ } }
对于上面的代码,我收到错误
method1 = () => {` ^
SyntaxError:意外的令牌=
答案 0 :(得分:2)
目前还没有类实例字段native support。你最好的选择是使用像Babel这样的语言转换器support。