dependency-injection – angular2中服务的生命周期方法

前端之家收集整理的这篇文章主要介绍了dependency-injection – angular2中服务的生命周期方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > ngOnInit not being called when Injectable class is Instantiated3个
是否可以为使用@Injectable()注释的服务提供生命周期挂钩?

我曾经期望在这样的服务上调用生命周期钩子,但我被证明是错误的,它似乎只在@Component上工作.当依赖注入创建/销毁服务时,有没有办法在服务中获得信息?

import {Component,Injectable,OnInit,OnDestroy} from 'angular2/core';

@Injectable()
export class SampleService implements OnInit,OnDestroy {
    ngOnInit() {
        console.log("OnInit")
    }
    ngOnDestroy() {
        console.log("OnDestroy")
    }
}

@Component({
  selector: "sample",template: "<div>Sample Component</div>",providers: [ SampleService ]
})
export class SampleComponent {
  constructor() { private _sampleService: SampleService }
}
注入只是普通类(普通对象),因此它们没有特殊的生命周期.

创建类的对象时,将调用类的构造函数,这就是“OnInit”的含义.至于破坏,服务并没有真正被破坏.唯一可能发生的事情是,一旦不再引用它就会收集垃圾,这可能是在依赖注入器自身被删除之后发生的.但是你通常无法控制它,并且JavaScript中没有解构函数的概念.

@Injectable()
export class SampleService {
    constructor() {
        console.log('Sample service is created');
    }
}

猜你在找的Angularjs相关文章