运行 节点 4.4.7 时收到严格模式警告
Receiving strict mode warning while running node 4.4.7
我相信 node v4.4.7 支持 ES6。但是节点拒绝编译我的程序:
user1-$ node -v
v4.4.7
user1-$ node index.js
event-service.js:85
let sql = 'SELECT * FROM group_events where id = ?';
^^^
SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
我想避开'use strict'。还有其他选择吗?
运行 node --use_strict index.js
强制使用严格模式
我相信 node v4.4.7 支持 ES6。但是节点拒绝编译我的程序:
user1-$ node -v
v4.4.7
user1-$ node index.js
event-service.js:85
let sql = 'SELECT * FROM group_events where id = ?';
^^^
SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
我想避开'use strict'。还有其他选择吗?
运行 node --use_strict index.js
强制使用严格模式