How to use two AngularJS services with same name from different modules?

后端 未结 2 902
半阙折子戏
半阙折子戏 2021-02-02 09:02

Supposed I have two modules for AngularJS, e.g. foo and bar, and both of them define a service called baz.

In my application I dep

2条回答
  •  有刺的猬
    2021-02-02 09:33

    When we have two services with the same name, you have to differentiate them while using it in your local module. Let's see some code below to understand how it works,

    I have two Util services and need to differentiate them,

    angular
      .module('module1', [
      ])
      .service('UtilService', UtilService)
      .service('another.UtilService', UtilService)
      .name;
    

    In the controller file, you can simply inject like below.

    export class Controller {
      public static $inject: string[] = ['UtilService', 'another.UtilService'];
    
    constructor(
        private utilService: UtilService,
        private anotherUtilService
      ) {
         console.log(this.utilService) // will print the main util service methods
         console.log(this.anotherUtilService) // will print the another util service 
         methods
      }
    

提交回复
热议问题