AngularJS代码尽管在控制器中使用了数组语法,但没有正确缩小



在angular中,在将依赖项引入控制器时需要使用特殊的数组语法来避免缩小问题是一个众所周知的问题,所以我一直在使用这种表示法。但注入器似乎仍然存在这个代码的问题,这个代码只有在通过gullow uglify发送之后才会出现。

像指令这样的其他角度元素也需要使用这种语法吗?此外,我正在使用对象表示法来定义其中一个控制器,所以这可能是问题所在吗?

一些主要的配置内容。

var app = angular.module('musicApp', ['ngSanitize']);
//Whitelist Soundcloud
app.config(function($sceDelegateProvider) {
    $sceDelegateProvider.resourceUrlWhitelist([
        'self',
        'https://w.soundcloud.com/**'
    ]); 
});

指令,其中有一个控制器。

app.directive('soundcloudHtml', ['$sce', function($sce){
    return {
        restrict: 'A',
        link: function(scope, element, attrs) {
            scope.musicPiece.soundcloud = $sce.trustAsHtml(scope.musicPiece.soundcloud);
        }
    }
}]);
app.directive('music', function(){
    return {
        restrict: 'E',
        scope:{
            type: '='
        },
        templateUrl: '/resources/data/music/music.html?po=343we', 
        link: function(scope, element, attrs) {
        },
        controller: ['$http', '$scope', function($http, $scope){
                        this.musicList = [];
                        $scope.Utils = Utils;
                        var ctrl = this;
                        $http.get('/resources/data/music/music.json').success(function(data){
                            ctrl.musicList = data;
                            Utils.updateTableOfContents();
                        });
                    }], 
        controllerAs: 'musicCtrl'
    };
});

看起来我错过了配置,也需要该模式才能缩小。配置应该是

//Whitelist Soundcloud
app.config(['$sceDelegateProvider', function($sceDelegateProvider) {
    $sceDelegateProvider.resourceUrlWhitelist([
        'self',
        'https://w.soundcloud.com/**'
    ]); 
}]);

而不是

//Whitelist Soundcloud
app.config(function($sceDelegateProvider) {
    $sceDelegateProvider.resourceUrlWhitelist([
        'self',
        'https://w.soundcloud.com/**'
    ]); 
});

相关内容

  • 没有找到相关文章

最新更新