前端之家收集整理的这篇文章主要介绍了
如何使用Angularjs将依赖注入到提供程序?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在提供程序
方法中做DI?
在这个例子中
angular.module('greet',[])
.provider('greeter',function() {
this.$get=function() {
};
})
.service('greeterService',function($http){
console.log($http);
})
;
注入$ http服务似乎是正确的实现,但它不工作在提供程序方法,它会抛出一个错误:未知的提供者:$ http
提供程序方法是否与DI一起注入服务?
你可以注入$ http到提供程序。只要确保它出现在$ get,而不是
函数构造
函数。如下:
angular.module('greet',[]).provider('greeter',function() {
this.$get = function($http) {
};
});
原文链接:https://www.f2er.com/angularjs/145271.html