AngularJS指令找不到所需的控制器

问题描述 投票:0回答:1

这个的要点是,在下面的代码中,我需要'modalDirective'来访问要创建的元素列表,它位于'modalController'中。我还需要'modalDirective'来创建一个HTML元素,使用ng-model绑定到'modalController'中的范围变量,所以如果还有另一种方法可以做这些事情之一,我对它完全开放。

我使用以下参数打开一个模态:

var modalOptions = {
    templateUrl: 'targetUrl/modalPage.html',
    controller: 'modalController'
}
ModalDialogFactory.openModal(modalOptions);

ModalDialogFactory真的只是打开模态:

angular.module('myApp')
.factory('ModalDialogFactory', ['$modal', '$rootScope', function ($modal, $rootScope) {
    var modalDialogDefaults = {
        backdrop: 'static',
        keyboard: false,
        scope: $rootScope.$new()
    };
    var modalInstance;
    return {
        showModal: function (modalOptions) {
            var modalConfig = {};
            angular.extend(modalConfig, modalDialogDefaults, modalOptions);
            modalInstance = $modal.open(modalConfig);
            return modalInstance.result;
        },
        closeModal: function (selectedObjs) {
            if (modalInstance != null) {
                modalInstance.close(selectedObjs);
            }
        }
    };

}]);

模态打开,控制器工作正常。到现在为止还挺好。现在,在目标页面中我想使用一个指令:

angular.module('myApp').directive('modalDirective', function ($q, $http, $compile) {
return {
    restrict: 'EAC',
    compile: function(element, attr) {
              return function(scope, element, attr) {
              // Dynamically create new HTML elements   
    }
};
});

然后在modalPage.html中,我引用了模态指令:

<div modal-directive></div>

这也有效,该指令按预期创建动态HTML元素。当我想将其中一个元素绑定到'modalController'中的范围变量时,问题就出现了。该指令似乎没有访问控制器,我认为这是某种范围问题,但我不知道我哪里出错了。我尝试将此行添加到'modalDirective':

require: '^^modalController',

但是,当我尝试并需要控制器时,我收到一个错误:

Error: [$compile:ctreq] Controller 'modalController', required by directive 'modalDirective', can't be found!

有谁知道我哪里出错了?

angularjs angularjs-directive angularjs-controller
1个回答
1
投票

(假设,使用uibModal或其他允许解析的$ modal)

我知道派对迟到了,但在浏览一些较旧的任务时遇到了这个问题。您的要求的问题是$ modal服务将模态条目添加到控制器范围之外的HTML(除非控制器是整页,这似乎不太可能)。

您可能希望利用$ modal配置的resolve属性,而不是期望范围被传递。所以你要做的事情如下:

  • 创建将属性传递给resolve属性的模式选项
  • 做你的模态的东西
  • 通过你已经在做的$ modalInstance.close()返回任何更新

它最终会像:

ModalDialogFactory.showModal({
    resolve: {
        listOfStuff: function() { return $scope.list; }
    }
});

这将为您提供可在您的指令中使用的scope.listOfStuff。

© www.soinside.com 2019 - 2024. All rights reserved.