gpt4 book ai didi

node.js - Node : missing ) after argument list

转载 作者:搜寻专家 更新时间:2023-11-01 00:30:37 25 4
gpt4 key购买 nike

当我运行附在后面的nodejs http_test.js 时,它出现“参数列表后缺少)”,我检查了“(”和“{”,但感觉没有错。帮助!

const http = require('http');
http.get({
hostname: 'localhost',
port: 5000,
path: '/123/',
agent: false // create a new agent just for this one request
}, (res) => {
console.log(res)
// Do stuff with response
})

最佳答案

根据上面@aaron-dufour 的评论,您可能正试图在不支持 ECMAScript 的解释器中运行该代码6.

如果将文件的内容更改为以下内容,那是你的问题:

var http = require('http');
http.get({
hostname: 'localhost',
port: 5000,
path: '/123/',
agent: false // create a new agent just for this one request
}, function(res) {
console.log(res)
// Do stuff with response
});

在您的情况下,您使用的是 Nodejs,它应该没问题,给定 this article .可能是您使用的版本明显过时。尝试运行 node -vnode --version 以查看您正在运行的版本。

关于node.js - Node : missing ) after argument list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36118189/

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