rxjs使用of:举例数据的实例

Posted 芙蓉0504

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rxjs使用of:举例数据的实例相关的知识,希望对你有一定的参考价值。

注意:

安装了

npm install  rxjs@6.5.4 --save

如果按照以下方法调用of方法:会报错找不到of方法的错误。

import React from \'react\';
import { Observable } from \'rxjs\';
import \'rxjs/add/observable/of\'

const FlowPage = () => {

  const source$ = Observable.of(1,2,3);
  source$.subscribe(
    console.log,
    null,
    ()=>console.log(\'complete\')
  )
  return <h1>rxjs学习</h1>;
};

export default FlowPage;

解决方案一:

npm install rxjs-compat@6.5.4 --save

执行结果:

 解决方案二:

  import { of } from \'rxjs\';

const source$ = of(1,2,3) source$.subscribe( console.log, null, ()=>console.log(\'complete\') )

 

 

以上是关于rxjs使用of:举例数据的实例的主要内容,如果未能解决你的问题,请参考以下文章

[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(代码片段

rxjs 生成函数

rxjs 生成函数

RXJS:从 of() 移动到 schedule()

无法在 RxJs 6 和 Angular 6 中使用 Observable.of