[EcmaScript] await an async function call
async function f1() {
let r1 = await f2();
console.warn(r1); //4
return r1 + 1;
}
async function f2() {
let r2 = await new Promise((res, rej) => {
setTimeout(() => {
res(1);
}, 1000);
});
let r3;
try {
r3 = await new Promise((res, rej) => {
setTimeout(() => {
rej(2);
}, 1000);
});
} catch (ex) {
console.info(ex); //2
r3 = 3;
}
return r2 + r3;
}
f1().then(v => {
console.log(v); //5
});
주: (1) 모든 asyncfunction 성명은 실제적으로 asyncfunctionobject를 만들 것입니다. 이 object의constructor는
AsyncFunction
입니다.Object.getPrototypeOf(async function(){}).constructor
// function AsyncFunction() { [native code] }
(2)asyncfunction 호출 후promise를 되돌려줍니다. promiseresolve의 값은 async 함수 마지막
return
의 값입니다.When an async function is called, it returns a Promise. When the async function returns a value, the Promise will be resolved with the returned value. When the async function throws an exception or some value, the Promise will be rejected with the thrown value.
(3)awaitpromise 표현식은promiseresolve나reject 이후에 계속 실행됩니다. 만약promisereject가 실행되면awaitpromise 표현식이 이상하게 됩니다.
An async function can contain an await expression, that pauses the execution of the async function and waits for the passed Promise's resolution, and then resumes the async function's execution and returns the resolved value.
참조:
async function - MDN Async Functions - TC39
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.