Skip to Content
자바스크립트 + 리액트 디자인 패턴
book

자바스크립트 + 리액트 디자인 패턴

by 애디 오스마니(Addy Osmani), 윤창식
August 2024
Beginner to intermediate
384 pages
7h 38m
Korean
Hanbit Media, Inc.
Content preview from 자바스크립트 + 리액트 디자인 패턴
213
Chapter 09_
비동기 프로그래밍 패턴
9.3.7
프로미스 재시도
프로미스 재시도
Promise
Retry
패턴을 사용하면 프로미스가 실패할 때 다시 시도할 수 있습니다.
function makeRequestWithRetry(url) {
let attempts = 0;
const makeRequest = () => new Promise((resolve, reject) => {
fetch(url)
.then(response => response.json())
.then(data => resolve(data))
.catch(error => reject(error));
});
const retry = error => {
attempts++;
if (attempts >= 3) {
throw new Error('Request failed after 3 attempts.');
}
console.log(`Retrying request: attempt ${attempts}`);
return makeRequest();
};
return makeRequest().catch(retry);
}
9.3.8
프로미스 데코레이터
프로미스 데코레이터
Promise
Decorator
패턴은 고차 함수를 사용하여 프로미스에 적용할 수 있는
데코레이터를 생성합니다. 이를 통해 ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

AI를 위한 필수 수학

AI를 위한 필수 수학

할라 넬슨
클라우드 엔지니어를 위한 97가지 조언

클라우드 엔지니어를 위한 97가지 조언

Emily Freeman, Nathen Harvey, 정기훈(Jung Ki Hun)

Publisher Resources

ISBN: 9791169212571