gpt4 book ai didi

node.js - 为什么这个node.js代码没有串行执行?

转载 作者:太空宇宙 更新时间:2023-11-03 23:37:38 26 4
gpt4 key购买 nike

我是一个完全的 Node 菜鸟,几乎不知道自己在做什么。我正在尝试使用 futures 库依次执行一系列函数。我的代码:

var futures = require('futures');
var sequence = futures.sequence();

sequence
.then(function() {
console.log("one");
})
.then(function() {
console.log("two");
})
.then(function() {
console.log("three");
});

我希望我的输出是

one
two
three

但是我得到的输出是

one

我做错了什么?

最佳答案

Node.js正在处理回调函数,因此您需要匿名传递它以使futures执行下一个函数:

var futures = require('futures');
var sequence = futures.sequence();

sequence
.then(function(next) {
console.log("one");
next(null, 1);
})
.then(function(next) {
console.log("two");
next(null, 2);
})
.then(function(next) {
console.log("three");
next(null, 3);
});

关于node.js - 为什么这个node.js代码没有串行执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29963776/

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