gpt4 book ai didi

javascript - Node (语法错误 : unexpected identifier ) js files in terminal

转载 作者:搜寻专家 更新时间:2023-10-31 23:08:54 26 4
gpt4 key购买 nike

当我尝试通过带有 Node 的终端运行 javascript 文件时,出现“SyntaxError: unexpected identifier”


这是我保存为 example.js 的代码

console.log('hello world');


这是我的终端中发生的事情。

> Thoms-MacBook-Pro:desktop thomvaladez$ node
> console.log('hi');
hi
undefined
> node example.js
SyntaxError: Unexpected identifier
at Object.exports.createScript (vm.js:44:10)
at REPLServer.defaultEval (repl.js:117:23)
at bound (domain.js:254:14)
at REPLServer.runBound [as eval] (domain.js:267:12)
at REPLServer.<anonymous> (repl.js:279:12)
at REPLServer.emit (events.js:107:17)
at REPLServer.Interface._onLine (readline.js:214:10)
at REPLServer.Interface._line (readline.js:553:8)
at REPLServer.Interface._ttyWrite (readline.js:830:14)
at ReadStream.onkeypress (readline.js:109:10)

Node 响应命令和代码,但我无法打开文件。有谁知道可能是什么问题?

最佳答案

大多数人在 Node session 本身之外运行该命令。

> Thoms-MacBook-Pro:desktop thomvaladez$ node example.js

如果您已经在 Node session 中,就像您所做的那样——正如 t3dodson 所建议的那样——您在那个时候做一个 require。只有您需要在前面加上“./”,这样它才能找到您的文件。

> Thoms-MacBook-Pro:desktop thomvaladez$ node
> require ('./example.js')
> Hello World!

我猜你的版本中的“Node ”是“意外标识符”。

关于javascript - Node (语法错误 : unexpected identifier ) js files in terminal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31373973/

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