假设我有两个AngularJS模块,例如: foo和bar,它们都定义了一个名为baz的服务。
在我的申请中,我依靠他们说:
var app = angular.module('app',[ 'foo','bar' ]);
然后我可以尝试使用控制器中的baz服务
app.controller('blaController',[ '$scope','baz',function($scope,baz) { // ... }]);
如何定义我想要使用的两种服务中的哪一种?有没有像完全合格的名字?
服务定位器按名称查找服务(
angularjs guide DI)。但是
“Namespacing” services in AngularJS:
原文链接:https://www.f2er.com/angularjs/144055.htmlAs of today AngularJS doesn’t handle namespace collisions for services
so if you’ve got 2 different modules with the service named the same
way and you include both modules in your app,only one service will be
available.
我想你可以“手工制作”完全限定名称:将服务命名为foo.baz和bar.baz而不是普通的baz。这是一种自欺欺人。而且,以这种方式编写它并不会使命名空间成为现实,但另一个读取代码的人可能会这么认为。