如何设置' inline'指令范围内$ modal的控制器?

时间:2015-04-14 09:21:48

标签: angularjs angular-ui-bootstrap

我试图在指令中打开一个Bootstrap UI $模式。它有效,但是当我想添加一个内联的'控制器(见下面代码中的注释行),我得到了一个" [$ injector:unpr]未知的提供者:nProvider< - n"错误。

谁能告诉我为什么?

angular.module('myApp.directives').directive('eModalForm', ['$modal', function ($modal) {

   return {
      restrict: 'A',
      link: function ($scope, $element, $attrs) {

         $scope.openModal = function () {
            console.log('//==//');
            var modalInstance = $modal.open({

                templateUrl: '/App/Templates/modal.html',

                // commented these lines to prevent error:
                //controller: function ($scope, $modalInstance) {
                //  $scope.$modalInstance = $modalInstance;
                //},

                size: 'lg'

            });

         };
      }

   };

}]);

我这样称呼这个函数:

<div ng-repeat="item in list" ng-click="openModal(item)" e-modal-form>

1 个答案:

答案 0 :(得分:12)

在缩小期间,控制器依赖性会丢失,只需使用扩展语法:

controller: ['$scope', '$modalInstance', function ($scope, $modalInstance) {
    ...
}],
...