我在localhost上运行了两个NodeJS应用程序。
申请编号1使用superagent.js申请/generatedData
表格申请编号2(下文):
request = require('superagent');
request.get('http://localhost:3000/generatedData')
.end(function(err, res) {
if (err) {
console.log(err);
} else {
console.log(res.text);
}
});
Application no.2生成数据并将其写入响应(下面)
router.get('/generatedData', function (req, res) {
res.setHeader('Connection' , 'Transfer-Encoding');
res.setHeader('Content-Type' , 'text/html; charset=utf-8');
res.setHeader('Transfer-Encoding' , 'chunked');
var Client = someModule.client;
var client = Client();
client.on('start', function() {
console.log('start');
});
client.on('data', function(data) {
res.write(data);
});
client.on('end', function(msg) {
client.stop();
res.end();
});
client.on('err', function(err) {
client.stop();
res.end(err);
});
client.on('stop', function() {
console.log('stop');
});
client.start();
return;
});
在app no.1中我想使用正在编写的数据。
我不能等到request.end
,因为生成的数据可能很大,需要很长时间才能完成。
如何通过2号应用程序将数据写入response
来获取数据?
这是正确的方向吗?什么是最好的方法呢?
谢谢, 阿萨夫
答案 0 :(得分:0)
要在App No.1中编写数据时使用,您可以使用Node.js http
模块并监听响应对象的data
事件。
const http = require('http');
const req = http.request({
hostname: 'localhost',
port: 3000,
path: '/generatedData',
method: 'GET'
}, function(res) {
res.on('data', function(chunk) {
console.log(chunk.toString());
// do whatever you want with chunk
});
res.on('end', function() {
console.log('request completed.');
});
});
req.end();
答案 1 :(得分:0)
你可以使用一些东西:
require('superagent')
.get('www.streaming.example.com')
.type('text/html')
.end().req.on('response',function(res){
res.on('data',function(chunk){
console.log(chunk)
})
res.pipe(process.stdout)
})
参考表格Streaming data events aren't registered。
如果要写入文件,请使用类似的内容......
const request = require('superagent');
const fs = require('fs');
const stream = fs.createWriteStream('path/to/my.json');
const req = request.get('/some.json');
req.pipe(stream);