標籤:
閱讀目錄
- 推斷式注入
- 標記式注入
- 內聯式注入
- $injector常用的方法
- 範例代碼
在AngularJS中也有依賴注入的概念,像spring中的依賴注入,但是又有所不同。Spring中使用構造注入或者設值注入的方式,還需要做一些額外的操作,但是angular中只需要在需要的地方聲明一下即可,類似模組的引用,因此十分方便。
參考:[angular api doc] (http://docs.angularjs.cn/api/auto/service/$injector)
回到頂部推斷式注入
這種注入方式,需要在保證參數名稱與服務名稱相同。如果代碼要經過壓縮等操作,就會導致注入失敗。
app.controller("myCtrl1", function($scope,hello1,hello2){ $scope.hello = function(){ hello1.hello(); hello2.hello(); } });
回到頂部標記式注入
這種注入方式,需要設定一個依賴數組,數組內是依賴的服務名字,在函數參數中,可以隨意設定參數名稱,但是必須保證順序的一致性。
var myCtrl2 = function($scope,hello1,hello2){ $scope.hello = function(){ hello1.hello(); hello2.hello(); } } myCtrl2.$injector = [‘hello1‘,‘hello2‘]; app.controller("myCtrl2", myCtrl2);
回到頂部內聯式注入
這種注入方式直接傳入兩個參數,一個是名字,另一個是一個數組。這個數組的最後一個參數是真正的方法體,其他的都是依賴的目標,但是要保證與方法體的參數順序一致(與標記注入一樣)。
app.controller("myCtrl3",[‘$scope‘,‘hello1‘,‘hello2‘,function($scope,hello1,hello2){ $scope.hello = function(){ hello1.hello(); hello2.hello(); } }]);
回到頂部$injector常用的方法在angular中,可以通過
angular.injector()
獲得注入器。
var $injector = angular.injector();
通過$injector.get(‘serviceName‘)
獲得依賴的服務名字
$injector.get(‘$scope‘)
通過$injector.annotate(‘xxx‘)
獲得xxx的所有依賴項
$injector.annotate(xxx)
回到頂部範例代碼
<html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script></head><body ng-app="myApp"> <div ng-controller="myCtrl1"> <input type="button" ng-click="hello()" value="ctrl1"></input> </div> <div ng-controller="myCtrl2"> <input type="button" ng-click="hello()" value="ctrl2"></input> </div> <div ng-controller="myCtrl3"> <input type="button" ng-click="hello()" value="ctrl3"></input> </div> <script type="text/javascript"> var app = angular.module("myApp",[]); app.factory("hello1",function(){ return { hello:function(){ console.log("hello1 service"); } } }); app.factory("hello2",function(){ return { hello:function(){ console.log("hello2 service"); } } }); var $injector = angular.injector(); console.log(angular.equals($injector.get(‘$injector‘),$injector));//true console.log(angular.equals($injector.invoke(function($injector) {return $injector;}),$injector));//true //inferred // $injector.invoke(function(serviceA){}); app.controller("myCtrl1", function($scope,hello1,hello2){ $scope.hello = function(){ hello1.hello(); hello2.hello(); } }); //annotated // function explicit(serviceA) {}; // explicit.$inject = [‘serviceA‘]; // $injector.invoke(explicit); var myCtrl2 = function($scope,hello1,hello2){ $scope.hello = function(){ hello1.hello(); hello2.hello(); } } myCtrl2.$injector = [‘hello1‘,‘hello2‘]; app.controller("myCtrl2", myCtrl2); //inline app.controller("myCtrl3",[‘$scope‘,‘hello1‘,‘hello2‘,function($scope,hello1,hello2){ // app.controller("myCtrl3",[‘$scope‘,‘hello1‘,‘hello2‘,function(a,b,c){ // a.hello = function(){ // b.hello(); // c.hello(); // } $scope.hello = function(){ hello1.hello(); hello2.hello(); } }]); console.log($injector.annotate(myCtrl2));//["$scope","hello1","hello2"] </script></body></html>
AngularJS API之$injector ---- 依賴注入