繁体   English   中英

如何在指令模板中将已包含元素的范围更改为ng重复项范围

[英]How to change a scope of transcluded elements to a ng-repeat item scope within directive template

我希望能够获得被排除的内容。 将其应用于指令中的ng-repeat。 然后将每个ng-repeat的作用域应用于已包含内容的克隆。

在另一个指令A的一部分中,我有这个:

...

<directive-b>
    // title is exposed here to directiveA but I want it to be changed to ng-repeat scope later
    <p>Hello {{title}}</p>
</directive-b>

...

内部指令B指令

(function() {
    'use strict';
    angular.module('app')
        .directive('directiveB', DirectiveB);

    function DirectiveB() {
        return {
            restrict: 'E',
            transclude: true,
            scope: {},
            bindToController: {},
            compile: DirectiveBCompile,
            controller: DirectiveBController,
            controllerAs: 'vm',
            templateUrl: 'directive-b.partial.html'
        }
    }

    function DirectiveBCompile(cElem, cAttr, cTransclude) {
        // cTransclude is deprecated... so cant do this here
        return InfiniteScrollLink;
    }

    function DirectiveBController() {
        var vm = this;
    }

    function DirectiveBLink(scope, element, attrs, controller, transclude) {
        // ideally would be great to somehow apply ng-repeat scope to each transcluded element here, but I couldn't

        scope.data = [{
            title: 12345
        }, {
            title: 345245
        }, {
            title: 32452345
        }];
        // this scope doesn't get picked up either
        scope.title = "12345";
    }
})();

内部指令B指令部分

<ul>
    <li data-ng-repeat="data in vm.data" data-ng-transclude>
    </li>
</ul>

有什么办法可以将ng-repeat中的“数据”作为传递范围传递?

我想看的是:

<ul>
    <li>
        <p>Hello 12345</p>
    </li>
    <li>
        <p>Hello 345245</p>
    </li>
    <li>
        <p>Hello 32452345</p>
    </li>
</ul>

我能够以一种非常肮脏的方式做到这一点。

<directive-b>
    // just want to point out that this is **probably** the only way to pass
    // data-bind inside this element as otherwise scope would be overwritten
    <div ng-controller="DirectiveBTemplate as template">
        <p>Hello {{template.data.title}}</p>
    </div>
</directive-b>

然后,

<ul>
    // data="data" is crucial here, basically sets data to ng-repeat scope
    <li data-ng-repeat="data in vm.data" data="data" data-ng-transclude>
    </li>
</ul>

接着,

(function() {
    'use strict';
    angular.module('app.widgets')
        .controller('DirectiveBTemplate', DirectiveBTemplate)
        .directive('directiveB', DirectiveB);
    DirectiveBTemplate.$inject = ["$scope"];

    function DirectiveBTemplate($scope) {
        // I'm basically assigning ng-repeat scope and setting it to DirectiveBTemplate scope, them im retrieving data from ng-repeat.
        $scope = $scope.$parent.$parent;
        this.data = $scope.data;
    }

恩,可惜没人问这个问题。 对于可能正在寻找答案的人:

实际上,您可以为要在指令中嵌入的元素提供所需的任何作用域-您只需要为此使用transclude函数,如下例所示:

 angular.module('MyApp', []) .directive('myDirective', myDirective); function myDirective() { return { scope: {}, restrict: 'E', transclude: true, link: MyDirectiveLinker, template: 'Yes, he is' // see? No ng-transclude attribute in directive's template. Why? Look inside of the link function }; ///// function MyDirectiveLinker ($scope, $element, $attrs, $ctrl, $transclude) { $scope.arrow = ' <- '; // our 'inner' variable $transclude( $scope, // and here, you attach directive's scope to the transcluded element function(_transcludedElement, _scope) { $element.prepend(_transcludedElement); } ); } } 
 <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.min.js"></script> <main ng-app="MyApp"> <my-directive> I use data of directive's scope{{arrow}} </my-directive> </main> 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM