cordova打包APK,SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported
Posted lizi0_0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cordova打包APK,SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported 相关的知识,希望对你有一定的参考价值。
javascript 严格模式
第一次接触let关键字,有一个要非常非常要注意的概念就是”javascript 严格模式”,比如下述的代码运行就会报错:
let hello = ‘hello world.‘;
console.log(hello);
错误信息如下:
let hello = ‘hello world.‘;
^^^
SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
...
解决方法就是,在文件头添加”javascript 严格模式”声明:
‘use strict‘;
let hello = ‘hello world.‘;
console.log(hello);
更多更详细的关于”javascript 严格模式”说明,请参考阮一峰的博客
《Javascript 严格模式详解》
以上是关于cordova打包APK,SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported 的主要内容,如果未能解决你的问题,请参考以下文章
cordova+vue 项目打包成Android(apk)应用
Cordova + vue 打包安卓(Android) apk