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:
import 'rxjs/add/operator/map';
(I checked in rxjs/add/operator, map exists there).
Essentially what I am trying to do is to reproduce this in Angular4:
var requestStream = Rx.Observable.just('https://api.github.com/users');
var responseStream = requestStream
.flatMap(function(requestUrl) {
return Rx.Observable.fromPromise(jQuery.getJSON(requestUrl));
});
responseStream.subscribe(function(response) {
// render `response` to the DOM however you wish
});
I also want to know how to deal with just
operator, since I can not see it in rxjs/add/operator...
Thanks for any help
Lower version of rxjs has got folder
Higher version of rxjs has got folder
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
usually this causes due to lowering the package version from higher version of rxjs.
There are static and instance operators in RxJS:
You may want to use these on the
Observable
global object or observable instance like this:For that you need to import modules from the
add
package:When you import the module it essentially patches
Observable
class orObservable
prototype by adding method corresponding to the operators.But you can also import these operators directly and don't patch
Observable
orobservableInstance
:With the introduction of lettable operators in RxJs@5.5 you should now take advantage of the built-in
pipe
method:Read more in RxJS: Understanding Lettable Operators