4

当我通过具有指令的字符串生成一个新元素(这就是我需要编译的原因)并且该指令通过“=”生成与控制器范围内的变量的关联时,我的控制器中的变量与指令中的一项。

我创建了一个 jsfiddle 来展示“门”ng-model 值应该与所有指令模型值相关联的示例。

看到这个小提琴:http: //jsfiddle.net/aVJqU/2/

我注意到的另一件事是,从 html 中存在的元素运行的指令通过变量(控制器和指令)显示了正确的关联。

html(有绑定的指令<door>):

<body ng-app="animateApp">
    <div ng-controller="tst">
        <h2> Controller with its model </h2>
        <input ng-model="doorval" type="text"> </input>
        {{doorval}}
        <h2> Directive render directly from the html </h2>
        <door doorvalue="doorval"></door> <key></key>
        <h2> Directives that are compiled </h2>
        <list-actions actions="actions"></list-actions>
    </div>
</body>

这是指令:

animateAppModule.directive('door', function () {
    return {
        restrict: "E",
        scope: {
            doorvalue:"="
        },
        template: '<span>Open the door <input type="text" ng-model="doorvalue"> </input> {{doorvalue}}</span>',
        replace: true
    }
})

这是控制器:

var animateAppModule = angular.module('animateApp', [])

animateAppModule.controller('tst', function ($scope, tmplService) {
    $scope.doorval = "open"
    $scope.actions = tmplService;

})
animateAppModule.service('tmplService', function () {
    return [{
        form_layout: '<door doorvalue="doorval"></door> <key></key>'
    }, {
        form_layout: '<door doorvalue="doorval"></door> with this <key></key>'
    }]
})

最后,这是编译具有未绑定指令的字符串的指令:

animateAppModule.directive('listActions', function ($compile) {
    return {
        restrict: "E",
        replace: true,
        template: '<ul></ul>',
        scope: {
            actions: '='
        },
        link: function (scope, iElement, iAttrs) {
            scope.$watch('actions', function (neww, old,scope) {
                var _actions = scope.actions;
                for (var i = 0; i < _actions.length; i++) {
                   //iElement.append('<li>'+ _actions[i].form_layout + '</li>');
                    //$compile(iElement.contents())(scope)
                    iElement.append($compile('<li>' + _actions[i].form_layout + '</li>')(scope))
                }
            })
        }
    }
})

我该怎么做才能将所有“门” ng-model 值绑定在一起?编译后的指令绑定到哪里?

4

2 回答 2

5

您只需将doorval引用传递给所有指令,而无需跳过任何一个。问题是该指令在其范围内listActions无法访问。doorval看看这个:http: //jsfiddle.net/aVJqU/5/

于 2013-04-09T22:39:59.277 回答
0

@Danypype 基本上是正确的,因为问题是由于范围隔离而发生的,如文档中所述。

另一种解决方案是通过从指令定义中删除范围块来简单地消除范围隔离。

于 2015-01-13T12:59:20.060 回答