angular.js - 关于angular RouteProvider
ringa_lee
ringa_lee 2017-05-15 17:03:03
0
3
553
config(['$routeProvider', function($routeProvider){
    $routeProvider.when
} ]);

config(function($routeProvider){
    $routeProvider.when
});



请问这两种方式配置路由有什么区别?

ringa_lee
ringa_lee

ringa_lee

Antworte allen(3)
刘奇

http://www.html-js.com/article/2956

大家讲道理

首先看文档

注意红色部分,如果不用显示指定参数的方式注入依赖,那么当你minify代码时,那些变量名可能被替换,从而导致运行时注入失败

洪涛

这两种都是依赖注入的方式,
ng中的3种注入方式:
a、推断式注入
app.controller('MyCtrl', function($scope) {
});

b、标注式注入
var myFunc=function($scope) {
});
myFunc.$inject = ['$scope'];
app.controller('MyCtrl',myFunc);

c、内联注入
app.controller('MyCtrl', ['$scope', function($scope) {
}]);

第1种是根据写的参数名称,如$scope,内部自己调用$inject把$scope进行依赖注入,如果在前端开发中使用压缩工具,就会把$scope变成另外的字母了,就无法进行推断了,而另外两种方式你可以把function($scope)改成function(a)都没关系;
第2种要多写一行代码;
一般推荐使用第3种。

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage