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

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

by 애디 오스마니(Addy Osmani), 윤창식
August 2024
Beginner to intermediate
384 pages
7h 38m
Korean
Hanbit Media, Inc.
Content preview from 자바스크립트 + 리액트 디자인 패턴
219
Chapter 09_
비동기 프로그래밍 패턴
}
async function transform2(data) {
// 변형된 데이터 반환
return transformedData;
}
async function main() {
const data = await makeRequest("http://example.com/");
const transformedData = await pipeline(data)
.then(transform1)
.then(transform2);
console.log(transformedData);
}
9.4.9
비동기 재시도
비동기 재시도
async
Retry
패턴을 사용하면 비동기 작업이 실패해도 자동으로 재시도할 수 있습
니다.
async function makeRequestWithRetry(url) {
let attempts = 0;
while (attempts < 3) {
try {
const response = await fetch(url);
const data = await response.json();
return data;
} catch (error) {
attempts++;
console.log(`Retrying request: attempt ${attempts}`);
}
}
throw new Error("Request ...
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