订阅Angular 2中的多个Observable

前端之家收集整理的这篇文章主要介绍了订阅Angular 2中的多个Observable前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的Angular 2应用程序在服务中有2个方法[GetCategories()和GetCartItems()],这两个方法都返回
观测.

为了从我的组件一个接一个地调用这两个方法,我写了下面的代码

ngOnInit() 
{
   this.appService.GetCategories().subscribe( (data) => {
       this.appService.categories = data;


       this.appService.GetCartItems().subscribe( {
                                                    next: (data) => { this.appService.cart = data},error: (err) => { this.toaster.error('cart==>' + err)}

                                                })

   });       
}

基本上从GetCategories()的订阅调用GetCartItems,我觉得这不是正确的方法,这是一种回调地狱.

任何想法如何以更好的方式实现这一点(比如在promises中链接“then”)?

看起来GetCartItems不依赖于GetCategories.然后你可以使用 zip
Observable
    .zip(
        this.appService.GetCategories()
        this.appService.GetCartItems()
    )
    .catch(err => this.toaster.error(err))
    .subscribe(([categories,cartItems]) => {
        this.appService.categories = categories;
        this.appService.cart = cartItems;
    });

猜你在找的Angularjs相关文章