2

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

如果出现服务器验证错误,例如 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');
          }
        });

    },
  }
}).
4

2 回答 2

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);

再次记住:为了让控制器访问表单,它必须与表单位于相同的元素中,或者可能位于子范围内。

于 2013-10-07T13:39:44.010 回答
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 事件可以替换为更改事件或任何其他事件。

于 2013-10-07T15:04:08.673 回答