according to this answer How to return an empty observable in rxjs i have tried all of it but it did not work for me
here is my code
post(url):Observalbe<any>{
if(this.holder.nullConnection()){ //checking internet connection
//return empty observalbe
return Observable.empty() ;
}else{
return this.http.post(this.configurator.restServerBaseUrl+url,data)
.map((result:Response)=> {
return result.json()
})
}
}
i have tried almost all the answers as per the stack question you can see above any help to return an empty obserable.
Observable.of()
should work for your case:
import {Observable} from 'rxjs/Observable';
import 'rxjs/add/observable/of';
// or import {Observable} from 'rxjs/Rx';
return Observable.of();
or
import {EmptyObservable} from 'rxjs/EmptyObservable';
return new EmptyObservable();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With