angular config() 注入器错误

angular injector error with config()

我想将配置注入我的 angular 应用程序。该应用程序还包含一个 运行 对象。

但是,当我添加配置选项时,出现 $injector:modulerr 错误。而且我找不到错误。

var myApp = angular.module('myApp',[
    'ngAnimate',
    'ui.bootstrap',
    'ui.router',
    'angular.filter',
    'angularUtils.directives.dirPagination',
    'validation.match',
    'ngSanitize',
    'ngCookies',
    'pascalprecht.translate',
    'toggle-switch',
    'angucomplete-alt',
    'cgPrompt',
    'dndLists',
    'ngFileUpload',
    'ui.router.breadcrumbs',
    'angular-bind-html-compile',
    'rzModule', // range slider (i.e. for price filter)
    'ngFileSaver',
    'angular-input-stars',
    'textAngular',
    'textAngular-uploadImage'
]);

myApp.config(function($provide) {
    $provide.decorator('taOptions', function($delegate) {
        $delegate.toolbar[1].push('uploadImage');
        return $delegate;
    });
});


myApp.run(['$rootScope', '$window', '$location', '$stateParams', '$api', '$translate', '$transitions', '$state',
    function($rootScope, $window, $location, $stateParams, $api, $translate, $transitions, $state) {
        //rootscope
}]);

这是关于 textAngular-uploadImage 模块 (https://github.com/mrded/textAngular-uploadImage) 的。当我删除配置选项时,我的应用 运行 没问题,但当然,我不能使用该模块。

这是什么原因?我在 html 中包含了所有必需的文件,textAngular (https://github.com/textAngular/textAngular) 工作正常。

我该如何解决这个问题?或者在 textAngular 中是否还有其他正常上传功能的选项?我也试过这个解决方案 (https://github.com/textAngular/textAngular/issues/139#issuecomment-111205679) 但我得到了同样的错误。

尝试下面的代码..

myapp.config(['$provide', function($provide){

    $provide.decorator('taOptions', ['$delegate', function(taOptions){
    taOptions.toolbar[1].push('uploadImage');
    }
    return taOptions;
    }];
    });

并且您需要使用如下编辑器注册上传图片

taRegisterTool('uploadImage', {
        iconclass: "fa fa-user",
        action: function(){
            //code
        }
    });