gpt4 book ai didi

javascript - 从一个函数返回值到另一个函数

转载 作者:行者123 更新时间:2023-12-02 16:04:02 25 4
gpt4 key购买 nike

我使用以下代码,我的问题是如何将端口从第一个函数传递到第二个函数,我知道如果我在第一个函数内部调用第二个函数,我可以这样做,但是还有其他方法可以使用吗?

 portscanner.findAPortNotInUse(3000, 3010, '127.0.0.1', function(error, port) {
console.log('AVAILABLE PORT AT: ' + port)
});

http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
JSON.stringify(req.headers, true, 2));
res.end();
}).listen(9033);

我想使用第一个端口的值,而不是使用端口 9033...

最佳答案

端口扫描器方法是异步的,因此唯一的方法是在确定可用端口并调用回调函数时创建服务器:

portscanner.findAPortNotInUse(3000, 3010, '127.0.0.1', function(error, port) {
console.log('AVAILABLE PORT AT: ' + port)
http.createServer(function (req, res) {
// ...
}).listen(port);
});

关于javascript - 从一个函数返回值到另一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30932168/

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