欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

AngularJS $injector 依賴注入詳解

 更新時(shí)間:2016年09月14日 14:46:42   作者:xingoo  
這篇文章主要介紹了AngularJS $injector 依賴注入的相關(guān)資料,需要的朋友可以參考下

推斷式注入

這種注入方式,需要在保證參數(shù)名稱與服務(wù)名稱相同。如果代碼要經(jīng)過壓縮等操作,就會(huì)導(dǎo)致注入失敗。

 app.controller("myCtrl1", function($scope,hello1,hello2){
    $scope.hello = function(){
      hello1.hello();
      hello2.hello();
    }
  });

標(biāo)記式注入

這種注入方式,需要設(shè)置一個(gè)依賴數(shù)組,數(shù)組內(nèi)是依賴的服務(wù)名字,在函數(shù)參數(shù)中,可以隨意設(shè)置參數(shù)名稱,但是必須保證順序的一致性。

var myCtrl2 = function($scope,hello1,hello2){
    $scope.hello = function(){
      hello1.hello();
      hello2.hello();
    }
  }
  myCtrl2.$injector = ['hello1','hello2'];
  app.controller("myCtrl2", myCtrl2);

內(nèi)聯(lián)式注入

這種注入方式直接傳入兩個(gè)參數(shù),一個(gè)是名字,另一個(gè)是一個(gè)數(shù)組。這個(gè)數(shù)組的最后一個(gè)參數(shù)是真正的方法體,其他的都是依賴的目標(biāo),但是要保證與方法體的參數(shù)順序一致(與標(biāo)記注入一樣)。

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')獲得依賴的服務(wù)名字

$injector.get('$scope')

通過$injector.annotate('xxx')獲得xxx的所有依賴項(xiàng)

$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>







以上就是對(duì)AngularJS injector的資料整理,后續(xù)繼續(xù)補(bǔ)充相關(guān)資料,謝謝大家對(duì)本站的支持!

相關(guān)文章

最新評(píng)論