在当前范围之外的元素上使用$ setValidity

时间:2013-10-07 12:45:57

标签: angularjs angularjs-directive angularjs-scope angularjs-forms

我有一个全局指令,负责从控制器获取错误消息,编译并显示它。

如果出现服务器验证错误,例如 This email already exists,我想关注这个元素,并将其有效性设置为false,例如$setValidity(false)

此指令不是表单,也不包含表单。

你会建议什么(已经尝试了所有被注释掉的东西)

directive('messageCompile', function ( $compile, $window, $rootScope ) {
  return {
    restrict: 'A',
    scope: true,
    link: function ( scope, element, attrs ) {
      var el;

      attrs.$observe( 'template', function ( tpl ) {
        if ( angular.isDefined( tpl ) ) {
          // compile the provided template against the current scope
          el = $compile( tpl )( scope );
          // stupid way of emptying the element
          element.html("");

          // add the template content
          element.append( el );
        }
      });
      attrs.$observe('focus', function(val){
        if ( angular.isDefined( val )  && Boolean(val)) {
          var el = angular.element('[name="' + attrs.focus + '"]');
          var form = el.parents().find('form');
          var formName = form.attr('name');
           el.focus();
          // scope[formName].$setValidity(val, false);       
          // el.scope().$setValidity(false);
          // scope[formName][val].$setValidity(false);
          //$rootScope.scope[formName][val].$setValidity(false);
          //$rootScope.scope[formName].$setValidity(val, false);
        }
      });
        var windowEl = angular.element($window);
        windowEl.on('scroll', function() {
          if(window.scrollY > 46){
            element.parent().parent().addClass('stayTop');

            // alert('here');
          }  
          else{
            // alert('here2');
            element.parent().parent().removeClass('stayTop');
          }
        });

    },
  }
}).

2 个答案:

答案 0 :(得分:4)

为了使用$scope[formName],控制器必须位于表单元素上。通过直接定义:

<form name="theForm" ng-controller="TheCtrl">

或作为指令:

directive("myDirective", function() {
    return {
        template: "<form name='theForm'>...</form>",
        controller: ["$scope", function($scope) {
            ...
        }],
        ...
    };
});

如果符合这些条件,则必须为您需要访问的每个元素定义name属性:

<form name="theForm" ...>
    <input name="theInput" ...>

然后您可以访问相应控制器内的$setValidity(),如上所述:

$scope.theForm.theInput.$setValidity(false);

AGAIN REMEMBER:为了让控制器访问表单,它必须与表单位于同一元素,或者可能位于子范围内。

答案 1 :(得分:0)

好吧,我已经成功解决了这个问题,并提供了足够的结果:

attrs.$observe('focus', function(val){
    if (angular.isDefined(val)  && Boolean(val)) {
        var el = angular.element('[name="' + attrs.focus + '"]');
        var form = el.parents().find('form');
        var formName = form.attr('name');
        el.focus();
        el.removeClass('ng-valid').addClass('ng-invalid');
        el.bind('keyup', function(){
            el.removeClass('ng-invalid');
            el.unbind('keyup');
        });
    }
});

当然,keyup事件可以由change事件或任何其他事件替换。