web-dev-qa-db-ja.com

孤立したスコープとngモデルを使用したディレクティブ

分離されたスコープとngModelディレクティブを使用するディレクティブを記述しようとしています。

問題:
ディレクティブでモデルが更新されると、呼び出し元の値が更新されません。

HTML:

<test-ng-model ng-model="model" name="myel"></test-ng-model>

指令:

app.directive(
    'testNgModel', [
    '$timeout',
    '$log',

function ($timeout, $log) {

    function link($scope, $element, attrs, ctrl) {
        var counter1 = 0, counter2 = 0;

        ctrl.$render = function () {
            $element.find('.result').text(JSON.stringify(ctrl.$viewValue))
        }

        $element.find('.one').click(function () {
            if ($scope.$$phase) return;
            $scope.$apply(function () {
                var form = angular.isObject(ctrl.$viewValue) ? ctrl.$viewValue : {};
                form.counter1 = ++counter1;
                ctrl.$setViewValue(form);
            });
        });
        $element.find('.two').click(function () {
            if ($scope.$$phase) return;
            $scope.$apply(function () {
                var form = angular.isObject(ctrl.$viewValue) ? ctrl.$viewValue : {};
                form.counter2 = ++counter2;
                ctrl.$setViewValue(form);
            });
        });

        $scope.$watch(attrs.ngModel, function (current, old) {
            ctrl.$render()
        }, true)
    }

    return {
        require: 'ngModel',
        restrict: 'E',
        link: link,
        //if isolated scope is not set it is working fine
        scope: true,
        template: '<div><input type="button" class="one" value="One"/><input type="button" class="two" value="Two"/><span class="result"></span></div>',
        replace: true
    };

}]);

デモ: フィドル

分離スコープが設定されていない場合は正常に動作します: fiddle

25
Arun P Johny

コメントで説明されているように、子スコープ(scope: trueまたはscope: { ... })ngモデル付き。ただし、Arunは追加のスコーププロパティを作成する必要があるため、scope: trueは、プリミティブではなく、オブジェクトで使用できます。これはプロトタイプの継承を利用するので、$parentは必要ありません。

<test-ng-model ng-model="someObj.model" ...>

fiddle

13
Mark Rajcok

分離スコープを作成したため、ngModel = "model"は新しい分離スコープを参照します。 AppControllerスコープを参照する場合は、$ parentを使用する必要があります。

<test-ng-model ng-model="$parent.model" name="myel"></test-ng-model>
7