gpt4 book ai didi

javascript - highland.js 异步数组到值流

转载 作者:行者123 更新时间:2023-12-02 14:48:49 25 4
gpt4 key购买 nike

我试图让以下代码片段返回相同的输出 - 数组值流。

第一个方法从数组开始并发出值。

第二种方法获取解析数组的 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]

最佳答案

在这两种情况下,您都不需要调用 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

关于javascript - highland.js 异步数组到值流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36358482/

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