98

我有一个使用 Bootstrap 标记的表单,如下所示:

<form class="form-horizontal">
  <fieldset>
    <legend>Legend text</legend>
    <div class="control-group">
      <label class="control-label" for="nameInput">Name</label>
      <div class="controls">
        <input type="text" class="input-xlarge" id="nameInput">
        <p class="help-block">Supporting help text</p>
      </div>
    </div>
  </fieldset>
</form>

那里有很多样板代码,我想简化为一个新指令 - 表单输入,如下所示:

<form-input label="Name" form-id="nameInput"></form-input>

生成:

   <div class="control-group">
      <label class="control-label" for="nameInput">Name</label>
      <div class="controls">
        <input type="text" class="input-xlarge" id="nameInput">
      </div>
    </div>

我通过一个简单的模板做了这么多工作。

angular.module('formComponents', [])
    .directive('formInput', function() {
        return {
            restrict: 'E',
            scope: {
                label: 'bind',
                formId: 'bind'
            },
            template:   '<div class="control-group">' +
                            '<label class="control-label" for="{{formId}}">{{label}}</label>' +
                            '<div class="controls">' +
                                '<input type="text" class="input-xlarge" id="{{formId}}" name="{{formId}}">' +
                            '</div>' +
                        '</div>'

        }
    })

然而,当我开始添加更高级的功能时,我遇到了困难。

如何支持模板中的默认值?

我想在我的指令中将“类型”参数作为可选属性公开,例如:

<form-input label="Password" form-id="password" type="password"/></form-input>
<form-input label="Email address" form-id="emailAddress" type="email" /></form-input>

但是,如果没有指定任何内容,我想默认为"text". 我该如何支持这一点?

如何根据属性的存在/不存在自定义模板?

我还希望能够支持“必需”属性,如果它存在的话。例如:

<form-input label="Email address" form-id="emailAddress" type="email" required/></form-input>

如果required指令中存在,我想将它添加到<input />输出中的生成中,否则忽略它。我不确定如何实现这一目标。

我怀疑这些要求可能已经超出了一个简单的模板,并且必须开始使用预编译阶段,但我不知道从哪里开始。

4

4 回答 4

211
angular.module('formComponents', [])
  .directive('formInput', function() {
    return {
        restrict: 'E',
        compile: function(element, attrs) {
            var type = attrs.type || 'text';
            var required = attrs.hasOwnProperty('required') ? "required='required'" : "";
            var htmlText = '<div class="control-group">' +
                '<label class="control-label" for="' + attrs.formId + '">' + attrs.label + '</label>' +
                    '<div class="controls">' +
                    '<input type="' + type + '" class="input-xlarge" id="' + attrs.formId + '" name="' + attrs.formId + '" ' + required + '>' +
                    '</div>' +
                '</div>';
            element.replaceWith(htmlText);
        }
    };
})
于 2012-05-18T04:36:21.047 回答
38

尝试使用 Misko 提出的解决方案,但在我的情况下,一些需要合并到我的模板 html 中的属性本身就是指令。

不幸的是,并非生成的模板引用的所有指令都可以正常工作。我没有足够的时间深入研究角度代码并找出根本原因,但找到了一种解决方法,这可能会有所帮助。

解决方案是将创建模板 html 的代码从编译移动到模板函数。基于上述代码的示例:

    angular.module('formComponents', [])
  .directive('formInput', function() {
    return {
        restrict: 'E',
        template: function(element, attrs) {
           var type = attrs.type || 'text';
            var required = attrs.hasOwnProperty('required') ? "required='required'" : "";
            var htmlText = '<div class="control-group">' +
                '<label class="control-label" for="' + attrs.formId + '">' + attrs.label + '</label>' +
                    '<div class="controls">' +
                    '<input type="' + type + '" class="input-xlarge" id="' + attrs.formId + '" name="' + attrs.formId + '" ' + required + '>' +
                    '</div>' +
                '</div>';
             return htmlText;
        }
        compile: function(element, attrs)
        {
           //do whatever else is necessary
        }
    }
})
于 2013-12-18T13:44:58.957 回答
5

不幸的是,上述答案并不完全奏效。特别是编译阶段无法访问范围,因此您无法根据动态属性自定义字段。使用链接阶段似乎提供了最大的灵活性(在异步创建 dom 等方面)。以下方法解决了:

<!-- Usage: -->
<form>
  <form-field ng-model="formModel[field.attr]" field="field" ng-repeat="field in fields">
</form>
// directive
angular.module('app')
.directive('formField', function($compile, $parse) {
  return { 
    restrict: 'E', 
    compile: function(element, attrs) {
      var fieldGetter = $parse(attrs.field);

      return function (scope, element, attrs) {
        var template, field, id;
        field = fieldGetter(scope);
        template = '..your dom structure here...'
        element.replaceWith($compile(template)(scope));
      }
    }
  }
})

我创建了一个包含更完整代码和方法的文章的要点

于 2013-10-16T02:47:13.783 回答
4

这是我最终使用的。

我对 AngularJS 很陌生,所以很想看到更好/替代的解决方案。

angular.module('formComponents', [])
    .directive('formInput', function() {
        return {
            restrict: 'E',
            scope: {},
            link: function(scope, element, attrs)
            {
                var type = attrs.type || 'text';
                var required = attrs.hasOwnProperty('required') ? "required='required'" : "";
                var htmlText = '<div class="control-group">' +
                    '<label class="control-label" for="' + attrs.formId + '">' + attrs.label + '</label>' +
                        '<div class="controls">' +
                        '<input type="' + type + '" class="input-xlarge" id="' + attrs.formId + '" name="' + attrs.formId + '" ' + required + '>' +
                        '</div>' +
                    '</div>';
                element.html(htmlText);
            }
        }
    })

示例用法:

<form-input label="Application Name" form-id="appName" required/></form-input>
<form-input type="email" label="Email address" form-id="emailAddress" required/></form-input>
<form-input type="password" label="Password" form-id="password" /></form-input>
于 2012-05-17T05:22:14.617 回答