簡體   English   中英

如何在一個指令中包含多個div?

[英]How to include multiple divs in a single directive?

我試圖在一個指令中包含多個div,但該指令僅在第一個div上起作用,並且將另一個div留在其中。

模板代碼:

<div actor-check-box  ng-repeat="actor in actors">

    <div  create-connections class="actor\{{$index}}" >
            <span><input class="checkbox-actor" type="checkbox" name="actor-checkbox"  id="actor-checkbox\{{$index}}">\{{actor}}</span>
    </div>

    <div ng-repeat="activity in activities">

        <div ng-if="actor == activity.id">

            <div ng-repeat = "impact in activity.text" >
                <div update-connections class="impact\{{$index}}actor\{{actors.indexOf(actor)}}" actor-id="actor\{{actors.indexOf(actor)}}">
                    <span><input class="checkbox-activity" type="checkbox" name="impact-checkbox" id="activity-checkbox\{{$index}}actor\{{actors.indexOf(actor)}}" activity-check-box>\{{impact}}</span>
                </div>

                <div ng-repeat="feature in features">

                    <div ng-if="actor == feature.id && impact == feature.key">
                        <div feature-connection ng-repeat = "feature in feature.text" class="feature\{{$index}}" activity-id="impact\{{activity.text.indexOf(impact)}}actor\{{actors.indexOf(actor)}}" id="">
                                 <span><input class="checkbox" type="checkbox" name="impact-checkbox" id="" >\{{feature}}</span>
                        </div>
                    </div>

                </div>

            </div>

        </div>

    </div>

</div>

指令代碼:

angular.module('mainModule').directive('actorCheckBox', function($interval) {

    return {
        restrict: 'EA',
        /*transclude: true,*/

        link: function (scope, element, attrs, ctrl) {

            scope.$watch('ngModel', function(newValue){
                /*alert(newValue);*/
                console.log(element.find('input[type="checkbox"]'));
                /*console.log(element.find('input[class="checkbox-actor"]'));*/
                console.log(element.find('input[class="checkbox-activity"]'));
                console.log(attrs);

            });
        }
    }
});

輸出在控制台中:

[input#actor-checkbox0.checkbox-actor, prevObject: o.fn.init[1], context: div.ng-scope, selector: "input[type="checkbox"]"]
[input#actor-checkbox1.checkbox-actor, prevObject: o.fn.init[1], context: div.ng-scope, selector: "input[type="checkbox"]"]
[input#actor-checkbox2.checkbox-actor, prevObject: o.fn.init[1], context: div.ng-scope, selector: "input[type="checkbox"]"]

所以問題是我有3個div和指令應用在第一個div上,另外2個div在主div內有復選框。 當指令被調用時,控制台只顯示主div中的checkbox元素而不是其他2 div的復選框元素。 從指令添加控制台:

如果我包含transclude:true它會刪除元素上的所有早期指令,並且頁面變為空白。

這是沒有發生的,因為ng-repeat為其自身創建了單獨的作用域。 您還需要包含div,或者修改指令以不使用隔離范圍。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM