是否可以使用命名角度配置功能?

时间:2017-01-26 05:54:00

标签: angularjs config

是否可以使用如下命名角度配置函数?

angular.module('moduleName', [...])
       .config('IsConfigNamePossibleHere', function(){
           // ...
       });

1 个答案:

答案 0 :(得分:0)

你可以这样做。 Angular style guide可能对您有所帮助。

angular
    .module('app')
    .config(config);

function config($routeProvider) {
    $routeProvider
        .when('/avengers', {
            templateUrl: 'avengers.html',
            controller: 'AvengersController',
            controllerAs: 'vm',
            resolve: {
                moviesPrepService: function(movieService) {
                    return movieService.getMovies();
                }
            }
        });
}