Angular.js自定义指令不会多次出现

时间:2013-11-24 02:23:34

标签: javascript angularjs twitter-bootstrap angularjs-directive

我有一个Angular.js指令我正在编写以减少Twitter Bootstrap的一些样板。到目前为止,我已经创建了一个form-input元素,它按预期显示。但是,如果我将许多这些指令放在同一个父元素中,那么实际只会添加第一个指令并显示出来。

任何人都可以解释为什么?

我的标记:

<form class="form-horizontal" role="form">
        <form-input type="text" target="name1" label="Name1" placeholder="Doug" ng-model="name1"/>
        <form-input type="text" target="name2" label="Name2" placeholder="Frank" ng-model="name2"/>
    </form>

app.js

var app = angular.module('app', ['ui.router']);


app.controller('FormInputController', ['$scope', '$attrs', function($scope, $attrs){
    console.log("Controller");
}]);

app.directive('formInput', function(){
    return {
        restrict: 'E',
        controller: 'FormInputController',
        transclude: true,
        replace: true,
        require: ['^ngModel'],
        template: '<div class="form-group">'
                + '<label for="{{id}}" class="col-sm-2 control-label">{{label}}</label>'
                + '<div class="col-sm-10">'
                  + '<input type="{{type}}" class="form-control" id="{{id}}" placeholder="{{placeholder}}">'
                + '</div>'
              + '</div>',
        scope: {
            id: '@',
            label: '@',
            placeholder: '@',
            type: "@"
        },

        link: function(scope, element, attrs, ctrls) {
            console.log(arguments);
        }
    };
});

如上所述,只显示“Doug”输入。

1 个答案:

答案 0 :(得分:11)

您不能为指令使用“自闭”标签。如果您按照以下方式更改markup,则应该有效:

<form class="form-horizontal" role="form">
    <form-input type="text" target="name1" label="Name1" placeholder="Doug" ng-model="name1"></form-input>
    <form-input type="text" target="name2" label="Name2" placeholder="Frank" ng-model="name2"></form-input>
</form>

基本上,HTML解析<form-input />的方式是一个没有关闭标记的开放标记,所以你的第一个指令已启动,但从未完成,这就是为什么第一个指令看起来有效,但第二个指令有效不

参见例如thisthis了解详情。