30

データベースに格納されているフィールドのタイプとそのパラメーターに応じて、フォームにさまざまな「ウィジェット」を表示できるように、ディレクティブを定義しようとしています。さまざまなタイプのシナリオに対応する必要があるため、レイアウトを処理するためのディレクティブが必要です。

いくつかの例で遊んでいる間に、私は*ちょっと*動作するコードを思いつきました:

HTML

<input type="text" ng-model="myModel" style="width: 90%"/>  
<div class="zippy" zippy-title="myModel"></div>

指令

myApp.directive('zippy', function(){
    return {
      restrict: 'C',
      // This HTML will replace the zippy directive.
      transclude: true,
      scope: { title:'=zippyTitle' },
      template: '<input type="text" value="{{title}}"style="width: 90%"/>',
      // The linking function will add behavior to the template
      link: function(scope, element, attrs) {
            // Title element
            element.bind('blur keyup change', function() {
                scope.$apply(read);
            });

            var input = element.children();


            function read() {
                scope.title = input.val();
            }
        }
    }
});

これは機能しているように見えますが(*適切な*angularJS変数バインディングよりも著しく遅いですが)、これを行うためのより良い方法があるはずだと思います。誰かがその問題に光を当てることができますか?

4

3 に答える 3

27

$apply実際には必要ないので、なぜ手動でメソッドをトリガーしているのかわかりません。

Angularページから使用した例を編集し、入力を含めました。それは私のために働きます:http://jsfiddle.net/6HcGS/2/

HTML

<div ng-app="zippyModule">
  <div ng-controller="Ctrl3">
    Title: <input ng-model="title">
    <hr>
    <div class="zippy" zippy-title="title"></div>
  </div>
</div>​

JS

function Ctrl3($scope) {
  $scope.title = 'Lorem Ipsum';
}

angular.module('zippyModule', [])
  .directive('zippy', function(){
    return {
      restrict: 'C',
      replace: true,
      transclude: true,
      scope: { title:'=zippyTitle' },
      template: '<input type="text" value="{{title}}"style="width: 90%"/>',
      link: function(scope, element, attrs) {
        // Your controller
      }
    }
  });

UPDATE maxisamは正しいので、次ng-modelのように変数を値に対してバインドする代わりに使用する必要があります。

<input type="text" ng-model="title" style="width: 90%"/>

動作中のバージョンは次のとおりです:http://jsfiddle.net/6HcGS/3/

于 2012-11-08T20:30:48.193 に答える
11

あなたはこのようなことを意味しますか?

私は基本的に@Flekの例を使用します。
唯一の違いはng-model='title'

双方向バインディングを行う秘訣はng-modelであり、ドキュメントに次のように記載されています。

ngModelは、Angularに双方向のデータバインディングを実行するように指示するディレクティブです。 input、select、textareaと連携して機能します。ngModelを使用する独自のディレクティブを簡単に作成することもできます。

<input type="text" ng-model="title" style="width: 90%"/>
于 2012-11-09T01:52:26.477 に答える
3

ディレクティブでコールバックパラメータに渡す方法は次のとおりです。コントローラテンプレート:

    <component-paging-select-directive
            page-item-limit="{{pageItemLimit}}"
            page-change-handler="pageChangeHandler(paramPulledOutOffThinAir)"
            ></component-paging-select-directive>

ディレクティブ:

angular.module('component')
    .directive('componentPagingSelectDirective', [
        function( ) {
            return {
                restrict: 'E',
                scope: { 
                    // using the '=' for two way doesn't work
                    pageItemLimit:  '@', // the '@' is one way from controller
                    pageChangeHandler: '&'
                },
                controller: function($scope) {   
                    // pass value from this scope to controller method. 
                    // controller method will update the var in controller scope
                    $scope.pageChangeHandler({
                        paramPulledOutOffThinAir: $scope.pageItemLimit
                    })

                }, ...

コントローラ内:

angular.module('...').controller(...
        $scope.pageItemLimit = 0; // initial value for controller scoped var

        // complete the data update by setting the var in controller scope 
        // to the one from the directive
        $scope.pageChangeHandler = function(paramPulledOutOffThinAir) {
            $scope.pageItemLimit = paramPulledOutOffThinAir;
        }

ディレクティブ(パラメーターをキーとして持つオブジェクト)、テンプレート(ディレクティブのパラメーター・オブジェクトからの「ラップされていない」キー)、およびコントローラー定義の関数パラメーターの違いに注意してください。

于 2015-08-17T20:00:56.750 に答える