home강의 홈으로
Section 2. Operator - RxJS의 다양한 연산자들
Lesson 2. Transformation 연산자들
<script src="https://unpkg.com/@reactivex/rxjs/dist/global/rxjs.umd.js"></script>

map Operator

const { of } = rxjs const { map } = rxjs.operators of(1, 2, 3, 4, 5).pipe( map(x => x * x) ).subscribe(console.log) const { from } = rxjs const { map } = rxjs.operators from([ { name: 'apple', price: 1200 }, { name: 'carrot', price: 800 }, { name: 'meat', price: 5000 }, { name: 'milk', price: 2400 } ]).pipe( map(item => item.price) ).subscribe(console.log)

pluck Operator

const { from } = rxjs const { pluck } = rxjs.operators const obs$ = from([ { name: 'apple', price: 1200, info: { category: 'fruit' } }, { name: 'carrot', price: 800, info: { category: 'vegetable' } }, { name: 'pork', price: 5000, info: { category: 'meet' } }, { name: 'milk', price: 2400, info: { category: 'drink' } } ]) obs$.pipe( pluck('price') ).subscribe(console.log) obs$.pipe( pluck('info'), pluck('category'), ).subscribe(console.log) obs$.pipe( pluck('info', 'category') ).subscribe(console.log)
const { ajax } = rxjs.ajax const { pluck } = rxjs.operators const obs$ = ajax(`https://api.github.com/search/users?q=user:mojombo`).pipe( pluck('response', 'items', 0, 'html_url') ) obs$.subscribe(console.log)

toArray Operator

const { range } = rxjs const { toArray, filter } = rxjs.operators range(1, 50).pipe( filter(x => x % 3 === 0), filter(x => x % 2 === 1), toArray() ).subscribe(console.log)

scan Operator

const { of } = rxjs const { reduce, scan } = rxjs.operators const obs$ = of(1, 2, 3, 4, 5)

reduce: 결과만 발행

obs$.pipe( reduce((acc, x) => { return acc + x }, 0) ).subscribe(x => console.log('reduce: ' + x))

scan: 과정을 모두 발행

obs$.pipe( scan((acc, x) => { return acc + x }, 0) ).subscribe(x => console.log('scan: ' + x))

zip Operator

const { from, interval, fromEvent, zip } = rxjs const { pluck } = rxjs.operators const obs1$ = from([1, 2, 3, 4, 5]) const obs2$ = from(['a', 'b', 'c', 'd', 'e']) const obs3$ = from([true, false, 'F', [6, 7, 8], { name: 'zip' }]) zip(obs1$, obs2$).subscribe(console.log) const obs1$ = from([1, 2, 3, 4, 5, 6, 7]) const obs4$ = interval(1000) const obs5$ = fromEvent(document, 'click').pipe(pluck('x')) zip(obs4$, obs5$).subscribe(console.log)

🤔얄코에게 질문하기질문은 반.드.시 이리로 보내주세요! ( 강의사이트 질문기능 ✖ )

강의에서 이해가 안 되거나 실습상 문제가 있는 부분,
설명이 잘못되었거나 미흡한 부분을 메일로 알려주세요!

답변드린 뒤 필요할 경우 본 페이지에
관련 내용을 추가/수정하도록 하겠습니다.

이메일 주소
yalco@yalco.kr
메일 제목 (반드시 아래 제목을 붙여넣어주세요!)
[질문] RxJS 2-2

🛑질문 전 필독!!

  • 구글링을 먼저 해 주세요. 들어오는 질문의 절반 이상은 구글에 검색해 보면 1분 이내로 답을 찾을 수 있는 내용들입니다.
  • 오류 메시지가 있을 경우 이를 구글에 복붙해서 검색해보면 대부분 짧은 시간 내 해결방법을 찾을 수 있습니다.
  • 강의 페이지에 추가사항 등 놓친 부분이 없는지 확인해주세요. 자주 들어오는 질문은 페이지에 추가사항으로 업데이트됩니다.
  • "유료파트의 강의페이지는 어디 있나요?" - 각 영상의 시작부분 검은 화면마다 해당 챕터의 강의페이지 링크가 있습니다.
  • 질문을 보내주실 때는 문제가 어떻게 발생했고 어떤 상황인지 등을 구체적으로 적어주세요. 스크린샷을 첨부해주시면 더욱 좋습니다.
🌏 Why not change the world?