gpt4 book ai didi

sockets - Node.js 端口同时监听和读取标准输入

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

我在 Node.js 中有一个套接字服务器,我希望能够在服务器监听的同时从标准输入读取数据。它仅部分起作用。我正在使用这段代码:

process.stdin.on('data', function(chunk) {
for(var i = 0; i < streams.length; i++) {
// code that sends the data of stdin to all clients
}
});

// ...

// (Listening code which responds to messages from clients)

当我不输入任何内容时,服务器会响应客户端的消息,但当我开始输入内容时,直到我按下 Enter 才会继续执行此任务。在开始输入内容和按下 Enter 之间的时间里,监听代码似乎被暂停了。

如何让服务器在我输入标准输入时仍然响应客户端?

最佳答案

我刚刚写了一个快速测试,同时处理来自 stdin 和 http 服务器请求的输入没有问题,所以您需要提供详细的示例代码,然后我才能帮助您。这是在 Node 0.4.7 下运行的测试代码:

var util=require('util'),
http=require('http'),
stdin=process.stdin;

// handle input from stdin
stdin.resume(); // see http://nodejs.org/docs/v0.4.7/api/process.html#process.stdin
stdin.on('data',function(chunk){ // called on each line of input
var line=chunk.toString().replace(/\n/,'\\n');
console.log('stdin:received line:'+line);
}).on('end',function(){ // called when stdin closes (via ^D)
console.log('stdin:closed');
});

// handle http requests
http.createServer(function(req,res){
console.log('server:received request');
res.writeHead(200,{'Content-Type':'text/plain'});
res.end('success\n');
console.log('server:sent result');
}).listen(20101);

// send send http requests
var millis=500; // every half second
setInterval(function(){
console.log('client:sending request');
var client=http.get({host:'localhost',port:20101,path:'/'},function(res){
var content='';
console.log('client:received result - status('+res.statusCode+')');
res.on('data',function(chunk){
var str=chunk.toString().replace(/\n/,'\\n');
console.log('client:received chunk:'+str);
content+=str;
});
res.on('end',function(){
console.log('client:received result:'+content);
content='';
});
});
},millis);

关于sockets - Node.js 端口同时监听和读取标准输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6063111/

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