最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

AngularJS $injector 依賴注入詳解

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

推斷式注入

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

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

標(biāo)記式注入

這種注入方式,需要設(shè)置一個依賴數(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)式注入

這種注入方式直接傳入兩個參數(shù),一個是名字,另一個是一個數(shù)組。這個數(shù)組的最后一個參數(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的所有依賴項

$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 injector的資料整理,后續(xù)繼續(xù)補充相關(guān)資料,謝謝大家對本站的支持!

相關(guān)文章

最新評論

庆云县| 江都市| 尼勒克县| 高要市| 大化| 库尔勒市| 遂昌县| 长岛县| 芜湖市| 通化市| 南雄市| 巢湖市| 庄河市| 天镇县| 海安县| 新巴尔虎左旗| 科技| 塘沽区| 大洼县| 正定县| 营山县| 南陵县| 定结县| 珲春市| 香格里拉县| 五峰| 平潭县| 长白| 开封县| 准格尔旗| 东源县| 收藏| 聊城市| 武宣县| 隆化县| 舒城县| 龙山县| 呈贡县| 武威市| 定州市| 山阴县|