是否可以在提供者方法中进行 DI?
在这个例子中
angular.module('greet',[])
.provider('greeter',function() {
this.$get=function() {
};
})
.service('greeterService',function($http){
console.log($http);
})
;
注入$http
服务似乎是正确的实现,但它在提供程序方法中不起作用并且会引发错误:
未知提供者:$http
提供者方法是否与 DI 一起使用以注入服务?