gpt4 book ai didi

javascript - 在 Ramda 管道中使用 Promise.all

转载 作者:行者123 更新时间:2023-12-03 23:49:03 33 4
gpt4 key购买 nike

Promise.all怎么样用于 ramda 管道?我想我在这里遗漏了一些愚蠢的东西。

const pipeline: Function = R.pipe(
R.map((record) => record.body),
R.map(JSON.parse),
R.map(asyncFunction),
console.log
);

返回一个 promise 数组( Promise.all 的输入)
[ Promise { <pending> },
Promise { <pending> },
Promise { <pending> },
Promise { <pending> },
Promise { <pending> },
Promise { <pending> },
Promise { <pending> },
Promise { <pending> },
Promise { <pending> },
Promise { <pending> } ]

但是,如果我尝试等待这些 promise 通过 Promise.all 解决,像这样:
const pipeline: Function = R.pipe(
R.map((record) => record.body),
R.map(JSON.parse),
R.map(asyncFunction),
Promise.all,
R.andThen(useTheReturn)
);

我最终得到一个类型错误,说明我正在尝试使用 Promise.all作为构造函数类型。
{
"errorType": "TypeError",
"errorMessage": "#<Object> is not a constructor",
"stack": [
"TypeError: #<Object> is not a constructor",
" at all (<anonymous>)",
" at /var/task/node_modules/ramda/src/internal/_pipe.js:3:14",
" at /var/task/node_modules/ramda/src/internal/_arity.js:11:19",
" at Runtime.exports.handler (/var/task/lambda/data-pipeline/1-call-summary-ingestion/index.js:14:19)",
" at Runtime.handleOnce (/var/runtime/Runtime.js:66:25)"
]
}

最佳答案

您需要绑定(bind) Promise.allPromise :

const pipeline: Function = R.pipe(
R.map((record) => record.body),
R.map(JSON.parse),
R.map(asyncFunction),
R.bind(Promise.all, Promise),
R.andThen(useTheReturn)
);

演示:

const pipeline = R.pipe(
R.bind(Promise.all, Promise),
R.andThen(R.sum)
);

const promise1 = Promise.resolve(10)
const promise2 = 20
const promise3 = new Promise((resolve) => setTimeout(resolve, 100, 30))

const result = pipeline([promise1, promise2, promise3])

result.then(console.log)
<script src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.27.0/ramda.js"></script>

关于javascript - 在 Ramda 管道中使用 Promise.all,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60446102/

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