how to return an empty observable

后端 未结 2 818
耶瑟儿~
耶瑟儿~ 2021-01-18 13:51

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):Obser         


        
2条回答
  •  被撕碎了的回忆
    2021-01-18 14:09

    In angular 2 you can return empty observable by using this :

    import {EmptyObservable} from 'rxjs/EmptyObservable';
        return new EmptyObservable();
    

提交回复
热议问题