尝试阻止两次订阅

时间:2016-06-28 16:42:49

标签: typescript angular rxjs rxjs5

我有一个服务和一个使用它的组件:

  • PagesService
  • PagesListComponent

PagesService我有一个Pages数组。我通过BehaviorSubject通知数组中的更改,这两个订阅都已订阅。

PagesService提供bootstrap,只共享一个实例。那是因为我需要保留数组,而不是每次需要时都下载页面。

代码如下:

pages.service.ts

import { Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs/Rx';
import { Http, Response } from '@angular/http';

import { Page } from './../models/page';

@Injectable() export class PagesService {

    public pages$: BehaviorSubject<Page[]> = new BehaviorSubject<Page[]>([]);
    private pages: Page[] = [];

    constructor(private http: Http) { }

    getPagesListener() {
        return this.pages$;
    }
    getAll() {
        this.http.get('/mockups/pages.json').map((res: Response) => res.json()).subscribe(
            res => { this.resetPagesFromJson(res); },
            err => { console.log('Pages could not be fetched'); }
        );
    }

    private resetPagesFromJson(pagesArr: Array<any>) {
        // Parses de Array<any> and creates an Array<Page>
        this.pages$.next(this.pages);
    }
}

pages_list.component.ts

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router-deprecated';
import { BehaviorSubject } from 'rxjs/Rx';

import { PagesService } from '../../shared/services/pages.service';
import { GoPage } from '../../shared/models/page';

@Component({
    moduleId: module.id,
    selector: 'go-pages-list',
    templateUrl: 'pages_list.component.html',
    styleUrls: ['pages_list.component.css']
})
export class PagesListComponent implements OnInit {
    pages$: BehaviorSubject<GoPage[]>;
    pages: GoPage[];
    constructor(private pagesService: PagesService, private router: Router) { }

    ngOnInit() {
        this.pages$ = this.pagesService.getPagesListener();
        this.pages$.subscribe((pages) => { this.pages = pages; console.log(pages) });
        this.pagesService.getAll();
    }
    ngOnDestroy() {
        this.pages$.unsubscribe();
    }
}

这是第一次正常工作,订阅onInit和de unsubscription onDestroy。但是当我返回列表并尝试再次订阅(以获取pages []的当前值并监听将来的更改)时,会触发错误 EXCEPTION: ObjectUnsubscribedError

如果我没有取消订阅,每次进入列表时,都会堆叠新订阅,并且在收到next()时会触发所有订阅。

2 个答案:

答案 0 :(得分:64)

我会以这种方式获得订阅并取消订阅,而不是直接针对该主题:

ngOnInit() {
  this.pages$ = this.pagesService.getPagesListener();
  this.subscription = this.pages$.subscribe((pages) => { // <-------
    this.pages = pages; console.log(pages);
  });
  this.pagesService.getAll();
}

ngOnDestroy() {
    this.subscription.unsubscribe(); // <-------
}

答案 1 :(得分:11)

.subscribe()返回订阅

  • 您应该使用此功能取消订阅


例如 父有一个reloadSubject:Subject;

  • child1 - &gt;订阅
  • child2 - &gt;订阅

child1 - “WORKS” - &gt;取消订阅他的订阅

ngOnInit{ 
  sub: Subscription = parent.subscribe();
}
onDestroy{
  this.sub.unsubscribe();
}


child2 - “不工作” - &gt;取消订阅是整个父母

ngOnInit{ 
  parent.subscribe();
}

onDestroy{
  parent.unsubscribe();
}

如果你打电话给父母取消订阅,两个孩子都不见了。
如果您取消订阅从.subscribe()获得的订阅 然后只有一个孩子取消订阅。

如果我错了,请纠正我!