指令 'uibSlide' 需要控制器 'uibCarousel',包装时找不到

Controller 'uibCarousel', required by directive 'uibSlide', can't be found when wrapping

我有一个包装该轮播指令的指令。当我替换幻灯片对象时,出现错误 "Controller 'uibCarousel', required by directive 'uibSlide', can't be found when wrapping."

我设法在 plunkr 中复制了它。我添加了一个简单的指令如下:

angular.module('ui.bootstrap.demo').directive('mydir', ['$compile',function($compile){
  function link(scope, element, attrs) {
    scope.$watch('slides', function (value) {
        var template = '<uib-carousel interval="myInterval" no-wrap="noWrapSlides">' +
        '<uib-slide ng-repeat="slide in slides" active="slide.active">' +
          '<img ng-src="{{slide.image}}" style="margin:auto;">' +
          '<div class="carousel-caption">' +
            '<h4>Slide {{$index}}</h4>' +
            '<p>{{slide.text}}</p>' +
          '</div>' +
        '</uib-slide>' +
      '</uib-carousel>;';
        element.empty();
        element.html(template);
        $compile(element.contents())(scope);
    });
  }
  return {
            link: link,
            restrict: 'E'
        };
}]);

我还添加了这个功能来替换幻灯片:

  $scope.createNewSlide = function(){
    $scope.slides = [];
    var newWidth = 600 + $scope.slides.length + 1;
    $scope.slides.push({
      image: '//placekitten.com/' + newWidth + '/300',
      text: ['More','Extra','Lots of','Surplus'][slides.length % 4] + ' ' +
        ['Cats', 'Kittys', 'Felines', 'Cutes'][slides.length % 4]
    });
  };

如果您点击替换幻灯片按钮,轮播仍会出现,但您的控制台中会出现错误。 http://plnkr.co/edit/IGyaWwXGUa8n2LykMkmV?p=preview

我是否在替换幻灯片对象时做了不该做的事情?

编辑:我注意到的一件事是删除 ng-repeat 指令不会导致此问题。另一个观察结果是 angular 实际上编译了所有旧的 DOM 元素,这些元素自上次编译指令时已被删除。我第一次注意到它正在通过 uibSlide 寻找所需的控制器时,uibSlide 的元素实际上在 DOM 上。当我通过单击按钮添加一个新数组时,第一个正在寻找控制器的 uibSlide 位于已从 DOM.

中删除的元素上

我想出了如何消除阻止 angular 重新编译当前删除的 DOM 元素的错误。

我更改了链接器函数以保存子作用域。当 slides 数组更改时,我自己销毁它并在之后创建一个新的。

  function link(scope, element, attrs) {
    var childScope
    scope.$watch('slides', function (value) {
        var template = '<uib-carousel interval="myInterval" no-wrap="noWrapSlides">' +
        '<uib-slide ng-repeat="slide in slides" active="slide.active">' +
          '<img ng-src="{{slide.image}}" style="margin:auto;">' +
          '<div class="carousel-caption">' +
            '<h4>Slide {{$index}}</h4>' +
            '<p>{{slide.text}}</p>' +
          '</div>' +
        '</uib-slide>' +
      '</uib-carousel>;';
        element.empty();
        if(childScope)
          childScope.$destroy();
        childScope = scope.$new();
        element.html(template);
        $compile(element.contents())(childScope);
    });
  }

http://plnkr.co/edit/g7wN2LSgbT4s7mULAzoJ?p=preview

从@Animal2 的回答开始,我能够解决问题并通过 $templateCache

导入模板
function bannerDirective($compile, $http, $templateCache, $parse) {

    function link(scope, element, iAttrs) {
      var childScope
      scope.$watch('slides', function () {
        var template = $parse(iAttrs.data)(scope);
        $http.get('app/myBanner.html', {cache: $templateCache})
          .success(function(tplContent){
            element.replaceWith($compile(tplContent)(scope));
        });
          element.empty();
        if(childScope)
          childScope.$destroy();
        childScope = scope.$new();
        element.html(template);
        $compile(element.contents())(childScope);
      });
    }

      var directive = {
          restrict: 'E',
          controller: 'BannerController',
          controllerAs: 'bannerCtrl',
          bindToController: true,
          link: link
      };

      return directive;
  }

希望对您有所帮助。