18
일부는 거절하더라도 모든 약속이 완료 될 때까지 기다리십시오
Promise네트워크 요청을 하는 일련의 s 가 있다고 가정 해 봅시다 . // http://does-not-exist will throw a TypeError var arr = [ fetch('index.html'), fetch('http://does-not-exist') ] Promise.all(arr) .then(res => console.log('success', res)) .catch(err => console.log('error', err)) // This is executed 실패했는지 여부에 관계없이 모든 작업이 완료 될 때까지 기다립니다. 내가 없이는 살 수있는 …