What are providers in Angular2?

后端 未结 5 1963
挽巷
挽巷 2020-12-14 05:58

In the Angular2 component configuration providers is one of the keys that we could specify. How are these providers defined and what are they used for?

5条回答
  •  遥遥无期
    2020-12-14 06:47

    Providers are usually singleton (one instance) objects, that other objects have access to through dependency injection (DI).

    If you plan to use an object multiple times, for example Http service in different components, you can ask for same instance of that service (reuse it). You do that with the help of DI by providing a reference to the same object that DI creates for you.

    @Component){
      ..
      providers: [Http]
    }
    

    ..instead of creating new object every time:

    @Component){}
    class Cmp {
      constructor() {
        // this is pseudo code, doens't work
        this.http = new Http(...options);
      }
    }
    

    This is an approximation, but that's the general idea behind Dependency Injection - let the framework handle creation and maintenance of reusable objects... Provider is Angular's term for these reusable objects (dependencies).

提交回复
热议问题