具有孤立范围和ng-模型的指令

时间:2013-08-31 10:06:47

标签: angularjs angularjs-directive angularjs-scope

我正在尝试编写一个使用隔离范围和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

如果未设置隔离范围,则工作正常:fiddle

2 个答案:

答案 0 :(得分:13)

正如评论中所讨论的,通常不建议将子范围(scope: truescope: { ... })与ng-model一起使用。但是,由于Arun需要创建其他范围属性,scope: true可以与对象一起使用,而不是基元。这利用了原型继承,因此$parent不是必需的:

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

fiddle

答案 1 :(得分:7)

因为您创建了一个隔离范围,所以ngModel =“model”指的是您的新隔离范围。如果要引用AppController范围,则应使用$ parent:

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