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)に還元したいと思います。

<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>'

        }
    })

しかし、私が行き詰まっているのは、より高度な機能を追加するようになったときです。

テンプレートでデフォルト値をサポートするにはどうすればよいですか?

「type」パラメータをディレクティブのオプション属性として公開したいと思います。例:

<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 に答える