Skip to Content
For Enterprise
For Government
For Higher Ed
For Individuals
For Marketing
For Enterprise
For Government
For Higher Ed
For Individuals
For Marketing
Explore Skills
Cloud Computing
Microsoft Azure
Amazon Web Services (AWS)
Google Cloud
Cloud Migration
Cloud Deployment
Cloud Platforms
Data Engineering
Data Warehouse
SQL
Apache Spark
Microsoft SQL Server
MySQL
Kafka
Data Lake
Streaming & Messaging
NoSQL Databases
Relational Databases
Data Science
Pandas
R
MATLAB
SAS
D3
Power BI
Tableau
Statistics
Exploratory Data Analysis
Data Visualization
AI & ML
Generative AI
Machine Learning
Artificial Intelligence (AI)
Deep Learning
Reinforcement Learning
Natural Language Processing
TensorFlow
Scikit-Learn
Hyperparameter Tuning
MLOps
Programming Languages
Java
JavaScript
Spring
Python
Go
C#
C++
C
Swift
Rust
Functional Programming
Software Architecture
Object-Oriented
Distributed Systems
Domain-Driven Design
Architectural Patterns
IT/Ops
Kubernetes
Docker
GitHub
Terraform
Continuous Delivery
Continuous Integration
Database Administration
Computer Networking
Operating Systems
IT Certifications
Security
Network Security
Application Security
Incident Response
Zero Trust Model
Disaster Recovery
Penetration Testing / Ethical Hacking
Governance
Malware
Security Architecture
Security Engineering
Security Certifications
Design
Web Design
Graphic Design
Interaction Design
Film & Video
User Experience (UX)
Design Process
Design Tools
Business
Agile
Project Management
Product Management
Marketing
Human Resources
Finance
Team Management
Business Strategy
Digital Transformation
Organizational Leadership
Soft Skills
Professional Communication
Emotional Intelligence
Presentation Skills
Innovation
Critical Thinking
Public Speaking
Collaboration
Personal Productivity
Confidence / Motivation
Features
All features
Verifiable skills
AI Academy
Courses
Certifications
Interactive learning
Live events
Superstreams
Answers
Insights reporting
Radar Blog
Buy Courses
Plans
Sign In
Try Now
O'Reilly Platform
book
자바스크립트 + 리액트 디자인 패턴
by
애디 오스마니(Addy Osmani)
,
윤창식
August 2024
Beginner to intermediate
384 pages
7h 38m
Korean
Hanbit Media, Inc.
Content preview from
자바스크립트 + 리액트 디자인 패턴
165
Chapter 07_
자바스크립트 디자인 패턴
// 새로 발행된 태그를 구독하고 이를 사용하여 검색 쿼리를 수행합니다.
//
데이터가
반환되면,
이
데이터를
애플리케이션의
나머지
부분이
//
사용할
수
있도록
발행합니다
.
//
데이터
구조에서
개별
변수로
값을
분해할
수
있게
하는
//
구조
분해
할당
문법을
사용했습니다
.
$.subscribe('/search/tags', (e, tags) => {
$.getJSON(
'http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?',
{
tags,
tagmode: 'any',
format: 'json',
},
// 함수 매개변수로써의 구조 분해 할당
({ items }) => {
if (!items.length) {
return;
}
// 객체 생성 시 객체 키와 동일한 변수 이름에 대한 단축형 속성 이름
$.publish('/search/resultSet', { items });
}
);
});
})(jQuery);
리액트 생태계에서의 관찰자 패턴
RxJS
는 관찰자 패턴을 사용하는 대표적인 라이브러리입니다.
RxJS
의 공식 문서
20
에서는 다
음과 같이 설명합니다.
ReactiveX
는 관찰자 패턴, 이터레이터 ...
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를 위한 필수 수학
할라 넬슨
개발자를 위한 커리어 관리 핸드북
마이클 롭
클라우드 엔지니어를 위한 97가지 조언
Emily Freeman, Nathen Harvey, 정기훈(Jung Ki Hun)
만들면서 배우는 프로그레시브 웹 앱: 사용자 경험을 극대화하는 차세대 웹 앱 기술
한민주, 양찬석, 탈 아터
Publisher Resources
ISBN: 9791169212571