javascript – 为什么瀑布这么慢?
作者:互联网
我正在为Node.js使用异步模块(参见https://github.com/caolan/async),我的问题是……为什么瀑布这么慢?
执行这段代码大约需要4秒钟……
App.post("/form", function(request, response) {
Async.waterfall([
function(callback) {
console.log("1.");
callback(null, "some data");
},
function(data, callback) {
console.log("2.");
callback(null, "some data");
},
function(data, callback) {
console.log("3.");
callback(null, "some data");
}
], function(error, document) {
console.log("4.");
console.log("Done.");
response.send(); // Takes 4 seconds
});
}
产量
1.
2.
// After 4 seconds
3.
4.
Done.
谢谢你的答复!
解决方法:
这只是另一个Node.js Bug.
在挂起的http.ServerResponse期间,在另一个process.nextTick中使用process.nextTick被破坏.
var http = require('http');
http.createServer(function(req, res) {
var now = new Date();
process.nextTick(function() {
process.nextTick(function() {
console.log(new Date() - now);
res.writeHead({});
res.end('foooooo');
});
});
}).listen(3000);
这需要一个永恒,async.js从其他回调中调用回调,这些回调是通过process.nextTick调用的,然后导致上面的错误被触发.
快速修复:在async.js第63行修改async.nextTick只使用setTimeout.
错误:我已经提交了issue.
标签:javascript,node-js,async-js 来源: https://codeday.me/bug/20190630/1340795.html