码迷,mamicode.com
首页 > 其他好文 > 详细

cordova打包APK,SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode ...

时间:2017-11-09 14:46:35      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:print   详细   htm   模式   hello   lan   func   ted   ber   

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 outside strict mode ...

标签:print   详细   htm   模式   hello   lan   func   ted   ber   

原文地址:http://www.cnblogs.com/lydiawork/p/7808542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!