Cordova运行es6代码

时间:2017-10-16 14:10:33

标签: cordova ecmascript-6

我已经使用cordova create hello com.example.hello HelloWorld命令创建了一个新的cordova项目,并且我还添加了所需的平台(android和浏览器)。
在index.js中,我更改了initialize成员,如下所示:      document.addEventListener('deviceready', () => { alert('test');});

应用程序在cordova run browsercordova run android --device启动时按预期运行。

当在Android模拟器(Nexus_5X_API_23.avd)中启动应用程序时,我得到了

Uncaught SyntaxError: Unexpected token ) #error。

到目前为止我已尝试过: npm install --save-dev babel-plugin-transform-runtime npm install --save babel-runtime .babelrc file created with {"plugins": ["transform-runtime"]} text

非常感谢任何帮助!

0 个答案:

没有答案