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

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

by 애디 오스마니(Addy Osmani), 윤창식
August 2024
Beginner to intermediate
384 pages
7h 38m
Korean
Hanbit Media, Inc.
Content preview from 자바스크립트 + 리액트 디자인 패턴
217
Chapter 09_
비동기 프로그래밍 패턴
에 실행할 수 있게 합니다.
async function main() {
const [data1, data2] = await Promise.all([
makeRequest("http://example.com/1"),
makeRequest("http://example.com/2"),
]);
console.log(data1, data2);
}
9.4.5
비동기 순차 실행
비동기 순차 실행
async
Sequential
Execution
패턴은
Promise
.
resolve
메서드를 사용하여 비동기 작
업을 순차적으로 실행할 수 있도록 합니다.
async function main() {
let result = await Promise.resolve();
result = await makeRequest1(result);
result = await makeRequest2(result);
result = await makeRequest3(result);
console.log(result);
}
9.4.6
비동기 메모이제이션
비동기 메모이제이션
async
Memoization
패턴은 캐시를 사용해 비동기 함수 호출 결과를 저장하여
중복 요청을 방지할 수 있습니다.
const cache = new Map();
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