service – Angular2 – 在routerOnDeactivate()中停止/取消/清除observable

前端之家收集整理的这篇文章主要介绍了service – Angular2 – 在routerOnDeactivate()中停止/取消/清除observable前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > End Observable interval when route changes in Angular 21个
我是Angular2的新手,如果这是一个微不足道的问题,请道歉.当我点击不同的链接时,我似乎无法停止间隔.该组件每隔3,5s从DB表中获取数据并将其用作聊天,因此100个用户可以随时添加它.我不希望它一直在后台运行,所以我想我会使用routeronDeactivate()函数让它在用户位于不同的链接时停止.

我想我做错了什么.有人可以帮我吗?

export class FeedComponent {

    public Feeditems: Feed[];
    public timer;


    constructor(private _FeedService: FeedService) {
    }

    getArticlesJSON() {

        console.log('getArticlesJSON');
        this._FeedService.getFeedJSON()
            .subscribe(
                data => this.Feeditems = data,err => console.log(err),() => console.log('Completed')
            );
    }

    routerOnDeactivate() {

        // this.timer.remove();
        // this.timer.dematerialize();
        // clearInterval(this.timer);

        console.log('-- deactivate ');
        // console.log('-- deactivate ' + JSON.stringify(this.timer));
    }

    routerOnActivate() {

        this.timer = Observable.timer(5000,3500);
        this.timer.subscribe(() => {
            this.getArticlesJSON();
        });

        console.log('++ activate ' + JSON.stringify(this.timer));
    }
}
routerOnActivate() {
  this.timer = Observable.timer(5000,3500);
  this.subscription = this.timer.subscribe(() => {
    this.getArticlesJSON();
  });
}

routerOnDeactivate() {
  this.subscription.unsubscribe();
}
原文链接:https://www.f2er.com/angularjs/142426.html

猜你在找的Angularjs相关文章