码迷,mamicode.com
首页 > Web开发 > 详细

Angularjs[补21] - 显示注入,隐示注入

时间:2017-01-28 22:59:54      阅读:472      评论:0      收藏:0      [点我收藏+]

标签:var   index   filter   stc   toms   基于   block   doc   http   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <div ng-app="myApp">
        <div ng-controller="secondController">

        </div>
        <div ng-controller="otherController">

        </div>
    </div>

<script type="text/javascript" src="../../vendor/angular/angularjs.js"></script>
<script type="text/javascript" src="app/index.js"></script>
</body>
</html>
var myApp = angular.module(‘myApp‘,[],function () {

})

//隐示依赖注入
.controller(‘firstController‘,function ($scope,CustomService) {

})
//显示依赖注入(推荐)
.controller(‘secondController‘,[‘$scope‘,‘$filter‘,function (a,b) {
    console.log(a);
    console.log(b(‘json‘)([1,2,3,4,5]));
}]);

function otherController(a) {
    console.log(a);
}
otherController.$inject = [‘$scope‘];

技术分享

  • 隐示注入,在 js 进行压缩时候会出错,因为变量名变短,而依赖注入是基于其服务的名称。
  • 显示注入代码压缩不出错。

 

Angularjs[补21] - 显示注入,隐示注入

标签:var   index   filter   stc   toms   基于   block   doc   http   

原文地址:http://www.cnblogs.com/bky-1083/p/6354565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!