我正在尝试使用该node-cron
模块每 2 秒发出一次 HTTP 请求。
我有 apiCalls.js;
var http = require('https');
module.exports = {
getData: function(callback) {
var options = {
host: 'google.com',
path: '/index.html'
};
var req = http.get(options, function(res) {
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
var bodyChunks = [];
res.on('data', function(chunk) {
bodyChunks.push(chunk);
}).on('end', function() {
var body = Buffer.concat(bodyChunks);
console.log('BODY: ' + body);
callback(body);
})
});
req.on('error', function(e) {
console.log('ERROR: ' + e.message);
});
}
}
这工作得很好。我想每 2 秒调用一次,稍后我想更新视图文件。在这里我不知道我是否需要socket.io
或者我可以通过反应来做到这一点。
我在 index.js 中调用这个函数;
var express = require('express');
var router = express.Router();
var cron = require('node-cron');
var apiCalls = require('../apiCalls')
router.get('/', function(req, res, next) {
var cronJob = cron.schedule('*/2 * * * * *', function(){
apiCalls.getData(function(data){
res.render('index', { title: 'example', data: data });
});
});
cronJob.start();
});
module.exports = router;
但是我遇到了错误,因为我似乎已经设置了标题。我怎样才能做到这一点?
_http_outgoing.js:503
throw new errors.Error('ERR_HTTP_HEADERS_SENT', 'set');
^
Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
at validateHeader (_http_outgoing.js:503:11)
谢谢