码迷,mamicode.com
首页 > 其他好文 > 详细

controller 有两种写法,讨论一下两种写法的区别:

时间:2018-11-01 20:30:20      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:fun   命名   问题   scope   int   location   例子   UNC   ctr   

controller 有两种写法,讨论一下两种写法的区别:

写法 1:

app.controller(‘myCtrl‘, function($scope, $location) {
    $scope.myUrl = $location.absUrl();
});

写法2:

app.controller(‘myCtrl‘, ["$scope","$location",function($scope,$location) {
    $scope.myUrl = $location.absUrl();
}]);

两种写法都是对的,但是推荐第二种写法,因为第一种写法在 js 压缩后会出问题,而第二种写法可以完美应对 js 压缩,原因是:js 压缩后,变量名会重命名,故第一种写法会报错。

上面的例子第 2 种写法还可以这样:

app.controller(‘myCtrl‘, ["$scope","$location",function(a, b) {
    a.myUrl = b.absUrl();
}]);

controller 有两种写法,讨论一下两种写法的区别:

标签:fun   命名   问题   scope   int   location   例子   UNC   ctr   

原文地址:https://www.cnblogs.com/Andrew520/p/9892144.html

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