function asyncTask(지연, 결과) {
return new Promise((해결, 거부) => {
setTimeout(() => {
해결(결과);
}, 지연);
});
}
const runtsk = async () => {
시도해보세요 {
const 결과 = Promise.all([
기다리기
asyncTask(3000, '첫 번째 호출'),
asyncTask(2000, '두 번째 호출'),
asyncTask(1000, '세 번째 호출')
]);
// Log the results of all the asynchronous tasks console.log(result);
} 잡기(오류) {
console.log('오류:', error);
}
};
runtsk();
위 내용은 비동기, 약속 기다리기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!