5

我已经实现了一个自定义输入指令 -counter具有重置功能。该指令具有require: "ngModel".

我正在用 重置指令的原始ngModel状态$setPristine()。与 不同$setDirty()$setPristine()不触及$pristine父窗体的状态。

问:我如何“通知”父表单该指令不再“脏”,以便父表单可以$pristine重置其状态?

请记住,仅调用form.$setPristine()是不够的,因为表单中可能还有其他“脏”控件,我的指令不会(也不应该)知道这些控件。

这是指令的链接功能:

link: function(scope, element, attrs, ngModel){

  var original;

  ngModel.$render = function(){
    original = scope.counter = ngModel.$viewValue;
  };

  scope.up = function(){
    ngModel.$setViewValue(++scope.counter);
  };

  scope.reset = function(){
    scope.counter = original;
    ngModel.$setViewValue(scope.counter);
    ngModel.$setPristine(); // this sets $pristine on the directive, but not the form
  };
}

以下是它的使用方法:

<div ng-form="form">
  <counter ng-model="count"></counter>
</div>

笨蛋

4

2 回答 2

3

从 Angular 1.3.x 开始,没有内置的解决方案。

form.$setPristine()在其所有子控件上设置原始。(代码链接

ngModel.$setPristine()仅在其自身上设置 $pristine(链接到代码

解决此问题的一种方法是创建一个与指令并存的form指令并劫持form.$setDirty以跟踪脏控件计数。这可能最好在预链接阶段完成(即在子控件开始注册自己之前)。

app.directive("pristinableForm", function() {
  return {
    restrict: "A",
    require: ["pristinableForm", "form"],
    link: function(scope, element, attrs, ctrls) {
      var me = ctrls[0],
        form = ctrls[1];
      me.form = form;
      me.dirtyCounter = 0;
      var formSetDirtyFn = form.$setDirty;
      form.$setDirty = function() {
        me.dirtyCounter++;
        formSetDirtyFn();
      };
    },
    controller: function() {
      this.$notifyPristine = function() {
        if (this.dirtyCounter === 0) return;
        if (this.dirtyCounter === 1) {
          this.dirtyCounter = 0;
          if (this.form) this.form.$setPristine();
        } else {
          this.dirtyCounter--;
        }
      };
    }
  };
});

然后,自定义输入指令需要require: ["ngModel", "^pristinableForm"]并调用pristinableForm.$notifyPristine()其重置函数:

scope.reset = function(){
  if (ngModel.$dirty){
    scope.counter = original;
    ngModel.$setViewValue(scope.counter);
    ngModel.$setPristine();
    pristinableForm.$notifyPristine();
  }
};

用法是:

<div ng-form="form" pristinable-form>
  <counter ng-model="count1"></counter>
  <counter ng-model="count2"></counter>
  <input ng-model="foo" name="anotherControl">
</div>

笨蛋

于 2015-01-30T21:29:50.800 回答
0

这是一个不太好的解决方案。遍历附加到表单的控件并检查是否还有脏控件。

我使用这里解释的方法来获取控件。

普朗克

app.directive("counter", function(){
  return {
    require: "ngModel",
    template: '<button ng-click="up()">{{counter}}</button><button ng-click="reset()">reset</button>',
    link: function(scope, element, attrs, ngModel){

      var original;

      ngModel.$render = function(){
        original = scope.counter = ngModel.$modelValue;
      };

      scope.up = function(){
        ngModel.$setViewValue(++scope.counter);
      };

      scope.reset = function(){
        scope.counter = original;
        ngModel.$setViewValue(scope.counter);
        ngModel.$setPristine();

        // check if one of the controls attached to the form is still dirty
        var dirty = false;
        angular.forEach(scope.form, function(val, key) {
            if (key[0] != '$') {
              if (val.$dirty) {
                dirty = true; 
              }
            }
        });
        if(!dirty) scope.form.$setPristine();


      };
    }
  };
});   
于 2015-01-30T20:28:02.067 回答