gpt4 book ai didi

javascript - 为什么我无法从命令行通过 "node --harmony test.js"启动和谐模式?

转载 作者:太空宇宙 更新时间:2023-11-04 02:57:43 24 4
gpt4 key购买 nike

问题是:

longhao33@hePC:~$ node --harmony test.js 
/home/longhao33/test.js:1
(function (exports, require, module, __filename, __dirname) { let str = 'es666666666666';
^^^

SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:413:25)
at Object.Module._extensions..js (module.js:452:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:475:10)
at startup (node.js:117:18)
at node.js:951:3

但是在以下情况下支持“let”:(太奇怪了!)

longhao33@hePC:~$ node --harmony
> let str = 'es66666666666'
undefined
> str
'es66666666666'
  1. 系统:ubuntu 14.04LTS 64位
  2. node:V4.1.1(由nvm安装,安装在$HOME)
  3. test.js 的内容:

    let str = 'es666666666666';console.log(str);

提前致谢。

最佳答案

您在 test.js 顶部缺少 'use strict';(如错误消息所示)。

它可以在 REPL 中运行,因为 'use strict'; is automatically included during code evaluation .

关于javascript - 为什么我无法从命令行通过 "node --harmony test.js"启动和谐模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32891755/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com