gpt4 book ai didi

javascript - 等待 promise 的结果返回 promise ?

转载 作者:行者123 更新时间:2023-11-30 11:00:39 28 4
gpt4 key购买 nike

我有一个像这样的简单函数,我希望从中得到 true。它从 true 创建一个 Observable,把它变成一个 promise,然后 await :

    async function returnTrue() {
return await of(true).toPromise();
}

var b = returnTrue();
console.log("b is: ", b);

b 的值被记录时,它会记录:

b 是:Promise {}

IIUC 另一种方法是像这样管道 observable:


function returnFalse() {
return of(false).pipe(map(b=>{
return b;
}));
}

const c = returnFalse();
console.log('Return value c: ', c);

在这种情况下,记录的值是:

Return value c:
Observable {_isScalar: false, source: {…}, operator: {…}}


想法?

总结

为了使用 RxJS Observables 进行同步编程,总结了答案和思考:

https://medium.com/p/6276721e674a

最佳答案

async 函数的上下文中返回的任何值都包装在 Promise 中。

在你的代码中,虽然你返回了 await 的结果,它实际上等待 of(true).toPromise() Promise 得到解决,但它确实由于 async 函数上下文,已解析的值再次包装在 promise 中。

这是在 async 函数中说明的 docs在 MDN 中:

The async function declaration defines an asynchronous function, which returns an AsyncFunction object. An asynchronous function is a function which operates asynchronously via the event loop, using an implicit Promise to return its result

在使用 Observable 的第二个代码中,您正在使用 pipe 运算符,根据定义,它在应用给定操作后返回另一个 Observable(映射在你的情况下)来自 docs :

pipe(operations: ...*): Observable

Return: Observable the Observable result of all of the operators having been called in the order they were passed in.

关于javascript - 等待 promise 的结果返回 promise ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57911352/

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