RxJS入门2之Rxjs的安装
Posted honkerzh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RxJS入门2之Rxjs的安装相关的知识,希望对你有一定的参考价值。
RxJS V6.0+ 安装
RxJS 的 import 路径有以下 5 种:
1.创建 Observable 的方法、types、schedulers 和一些工具方法
import { Observable, Subject, asapScheduler, pipe, of, from, interval, merge, fromEvent, SubscriptionLike, PartialObserver } from 'rxjs';
2.操作符 operators
import { map, filter, scan } from 'rxjs/operators';
3.ajax
import { ajax } from 'rxjs/ajax';
4.webSocket
import { webSocket } from 'rxjs/webSocket';
5.测试
import { TestScheduler } from 'rxjs/testing';
注:按需引入Rxjs模块,防止打包后文件过大。
以上是关于RxJS入门2之Rxjs的安装的主要内容,如果未能解决你的问题,请参考以下文章
[RxJS] Implement RxJS `mergeMap` through inner Observables to Subscribe and Pass Values Through(代码片段
[RxJS] Implement RxJS `switchMap` by Canceling Inner Subscriptions as Values are Passed Through(代码片段