我正在尝试获取以下代码段以返回相同的输出 - 数组值流。
第一种方法从数组开始并发出值。
第二种方法将一个解析数组的promise作为输入,因此它不会发出每个值,而只会发出数组本身。
我应该在第二种方法中改变什么来使它输出与第一种方法相同的东西?
const h = require('highland');
var getAsync = function () {
return new Promise((resolve, reject) => {
resolve([1,2,3,4,5]);
});
}
h([1,2,3,4,5])
.each(console.log)
.tap(x => console.log('>>', x))
.done();
//outputs 5 values, 1,2,3,4,5
h(getAsync())
.tap(x => console.log('>>', x))
.done();
//outputs >>[1,2,3,4,5]
答案 0 :(得分:2)
在这两种情况下,您都不需要调用done
,因为each
已经在使用您的信息流。
具有promise的情况将在流中传递已解析的值(即数字数组)。您可以使用series
方法将此流中的每个数组转换为自己的流,然后连接流。在这个例子中,它有点违反直觉,因为只有一个数组,因此只有一个流要连接。但这就是你想要的 - 一串数字。
以下是代码:
const h = require('highland');
var getAsync = function () {
return new Promise((resolve, reject) => {
resolve([1,2,3,4,5]);
});
}
h([1,2,3,4,5]) // stream of five numbers
.each(console.log) // consumption
h(getAsync()) // stream of one array
.series() // stream of five numbers
.each(x => console.log('>>', x)) // consumption