How to correctly import operators from the `rxjs` package

后端 未结 2 1352
旧巷少年郎
旧巷少年郎 2020-12-01 15:05

I am confused how to import those operators. Some I can import with import \'rxjs/add/operator/do\'; and some I can not. For ex, this does not work: impo

相关标签:
2条回答
  • 2020-12-01 15:44

    There are static and instance operators in RxJS:

    static
       of
       interval
    
    instance
       map
       first
    

    You may want to use these on the Observable global object or observable instance like this:

    Observable.of()
    observableInstance.map()
    

    For that you need to import modules from the add package:

    import 'rxjs/add/observable/of'
    import 'rxjs/add/operator/map'
    

    When you import the module it essentially patches Observable class or Observable prototype by adding method corresponding to the operators.

    But you can also import these operators directly and don't patch Observable or observableInstance:

    import { of } from 'rxjs/observable/of';
    import { map } from 'rxjs/operator/map';
    
    of()
    map.call(observableInstance)
    

    With the introduction of lettable operators in RxJs@5.5 you should now take advantage of the built-in pipe method:

    import { of } from 'rxjs/observable/of';
    import { map } from 'rxjs/operators/map';
    
    of().pipe(map(), ...)
    

    Read more in RxJS: Understanding Lettable Operators

    0 讨论(0)
  • 2020-12-01 15:50

    Lower version of rxjs has got folder

    node_modules\rxjs\operator

    Higher version of rxjs has got folder

    node_modules\rxjs\operators

    Please make sure the typescript file location is exists for map and other operators exists within.

    If problem still persist please delete rxjs folder from node_modules and run the command

    npm  install --save 
    

    usually this causes due to lowering the package version from higher version of rxjs.

    0 讨论(0)
提交回复
热议问题