gpt4 book ai didi

javascript - Node REPL 抛出语法错误 : Unexpected identifier

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

我是 node.js 的新手。在 Node REPL 中,一切正常。但是有些事情发生了变化。当我尝试执行一个文件时,它显示这个...

D:\Projects-2015\uniqueva>node
/>node module.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 --version

我在 module.js 中有以下代码..

var http = require("http");

http.createServer(function(request, response){
response.writeHead(200, {"Content-Type" : "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);

..但即使我尝试只记录 console.log 内容,或者只是将文件留空,这也是同样的问题.. enter image description here

最佳答案

您不能从 Node REPL 中调用 Node 可执行文件...只能调用 JavaScript 语句/表达式。

试试 require('./module.js')

关于javascript - Node REPL 抛出语法错误 : Unexpected identifier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29227486/

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