我有一个关于 Angular 中的依赖注入的简单问题。我创建自定义服务以便在彼此之间使用它们。不幸的是,我以尝试的方式收到错误。这是我的代码:
var myApp = angular.module('app', []);
myApp.service('$service1', ['$rootScope', function($rootScope) {
this.test = function() {
console.log('service1');
};
}]);
myApp.provider('$service2', ['$service1', function($service1) {
var service = 'service2';
this.registerService = function(mytext) {
service = mytext;
};
this.$get = function() {
var that = {};
that.test = function() {
console.log(service);
};
return that;
};
}]);
myApp.config(['$service2Provider', function($service2Provider) {
$service2Provider.registerService('changed service2');
}]);
myApp.controller('AppCtrl', ['$rootScope', '$service1', '$service2',
function($rootScope, $service1, $service2) {
$service1.test();
$service2.test();
}]);
错误:[$injector:modulerr] 无法实例化模块应用程序,原因是:[$injector:unpr] 未知提供者:$service1 http://errors.angularjs.org/1.2.0-rc.2/$injector/unpr ? p0=%24service1
如果您删除 in 的依赖关系,$servic1
它将$service2
起作用,但为什么呢?