Angularjs[补21] - 显示注入,隐示注入
Posted 。娴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Angularjs[补21] - 显示注入,隐示注入相关的知识,希望对你有一定的参考价值。
<!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] - 显示注入,隐示注入的主要内容,如果未能解决你的问题,请参考以下文章
PLSQL中显示Cursor隐示Cursor动态Ref Cursor差别