15

我创建了一个简单的示例来演示我面临的一个奇怪的问题。

Stackblitz - https://stackblitz.com/edit/angular-change-detection-form-group

我有三个组件,它们是:

1 - 应用程序组件

import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';
import { FormGroup, FormControl } from '@angular/forms';

@Component({
  selector: 'my-app',
  template: `<hello [form]="form"></hello>
  <hr />
  <button (click)="changeFormValue()">Change Form Value</button>`,
  styleUrls: ['./app.component.css'],
  changeDetection: ChangeDetectionStrategy.OnPush

})
export class AppComponent implements OnInit {
  name = 'Angular';

  form: FormGroup;

  ngOnInit() {
    this.form = new FormGroup({
      name: new FormControl('ABC'),
      age: new FormControl('24')
    });
  }

  changeFormValue() {
    this.form.setValue({
      name: 'XYZ',
      age: 35
    })
  }
}

2 - 你好组件

import { Component, Input, OnChanges, ChangeDetectionStrategy } from '@angular/core';
import { FormGroup } from '@angular/forms';

@Component({
  selector: 'hello',
  template: `<form [formGroup]="form">
  <app-input [form]="form"></app-input>
  </form>`,
  styles: [``],
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class HelloComponent implements OnChanges {
  @Input() form: FormGroup;

  ngOnChanges(changes) {
    console.log(changes)
  }
}

3 - 输入组件

import { Component, Input, OnInit, OnChanges, ChangeDetectionStrategy } from '@angular/core';
import { FormGroup } from '@angular/forms';

@Component({
  selector: 'app-input',
  template: `Name : <input type="text" [formControl]="nameFormcontrol" /> {{nameFormcontrol.value}} <br /><br />
  Age : <input type="text" [formControl]="ageFormcontrol" /> {{ageFormcontrol.value}}`,
  styles: [``],
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class InputComponent implements OnInit, OnChanges {
  @Input() form: FormGroup;
  nameFormcontrol;
  ageFormcontrol;

  ngOnInit() {
    this.nameFormcontrol = this.form.get('name');
    this.ageFormcontrol = this.form.get('age');
  }

  ngOnChanges(changes) {
    console.log(changes)
  }
}

在 hello 组件和 input 组件中,我都将 changedetection 策略设置为 onpush。正如您在上面看到的,我正在应用程序组件中创建一个表单组实例并将其传递给子组件。现在,当我单击应用程序组件上的按钮更改表单值时,它会更改输入字段中的值,但不会更改纯文本。它仅在我从两个子组件中删除推送更改检测时才有效。即使表单组值发生变化,也不会调用 ngOnChanges。

在此处输入图像描述

是不是很奇怪。更改检测如何用于输入而不是此处的纯文本?

有人可以解释一下吗?在不删除 onpush 更改检测的情况下,它的解决方法是什么。

4

5 回答 5

20

尽管我不确定这是否是理想的解决方案,但我找到了解决此问题的方法。

我们可以监听表单组值的变化,然后在输入组件中触发变化检测

this.form.valueChanges.subscribe( () => {
  this.cdr.detectChanges()
});

这样,它会连同输入一起更新标签值。

在此处输入图像描述

这是解决方案:

https://stackblitz.com/edit/angular-change-detection-form-group-value-change-issue-resolved

我不确定这是否是 Angular 的错误,但很高兴我找到了一些解决方法:)

于 2018-12-06T10:32:35.273 回答
5

你可以做一些更好的事情!,让我知道这是否有效:

当您使用响应式表单时,您可以使用一个非常酷的方法,称为updateValueAndValidity()

private changeControlValue(control, value: number) {
    control.setValue(value);
    control.updateValueAndValidity();
  }

您也可以在更新添加到表单的验证器时使用此方法,例如:

this.control.setValidators([Validators.required, Validators.minLength(5)]);
control.updateValueAndValidity();

这应该可以解决问题!我认为这是针对 ng-model 使用响应式表单或表单控件的最佳冒险之一。

我不建议在您的表单中使用 valueChanges,因为您可能会忘记取消订阅并造成内存泄漏,即使您记得创建此流程可能很乏味。

请记住,当使用 onPush 更改检测时,Angular 只会将三件事检测为更改:

1- 输入和输出。2- 用户可以执行的 Html 事件,例如(单击)。3- 订阅等异步事件。

我希望我帮助你!

于 2020-04-03T09:34:22.830 回答
2

valueChanges只需使用管道在模板中订阅控件的属性async,无需valueChanges在组件中手动触发更改检测和订阅。

<input [formControl]="control"/>
<p>{{control.valueChanges | async}}</p>
于 2021-04-25T04:10:17.337 回答
1

如果变量的内存地址发生变化,Angular 只会检测到变化。设置该值不会更改内存地址,因此不会命中 ngOnChanges。

数组也是如此。一个简单的推送不会命中 ngOnChanges,必须通过 = 将内存地址更改为新数组。

尝试这个:

import { Component, Input, OnInit, OnChanges, ChangeDetectionStrategy } from '@angular/core';
import { FormGroup } from '@angular/forms';

@Component({
  selector: 'app-input',
  template: `
  <div formGroupName="form">
      Name : <input type="text" formControlName="name" /> {{form.value.name}} <br /><br />
      Age : <input type="text" formControlName="age" /> {{form.value.age}}
  </div>`,
  styles: [``],
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class InputComponent implements OnInit, OnChanges {
  @Input() form: FormGroup;

  ngOnInit() {
  }

  ngOnChanges(changes) {
    console.log(changes)
  }
}
于 2018-12-05T21:01:31.600 回答
0

在自动更改检测 (cd) 运行期间,Angular 会注意到您的值FormGroup已更新并分别更新 UI。

通过将更改检测策略设置为OnPush您可以停用 Angular 运行的自动更改检测。在这种情况下,只有内部值被更新,但 Angular 不会检查 UI 的值。

也许这是对 Angular 的 ChangeDetection 的一个过于肤浅的解释,所以我推荐这个博客来更深入地了解这个主题。

ngOnChanges不会触发,因为你的对象引用(内存地址)FormGroup没有改变。仅当您将原语传递给组件ngOnChanges时才会触发。这也会触发 Angular 运行的新变更检测。@Input

要更新 UI,您可以通过注入ChangeDetectorRef父组件并调用detectChanges().

这可能看起来像这样:

constructor(private cd: ChangeDetectorRef) {}
...
changeFormValue() {
    this.form.setValue({
        name: 'XYZ',
        age: 35
    });
    // This will trigger the change detection and your input field are updated
    this.cd.detectChanges(); 
}

我希望这是可以理解的;-)

于 2018-12-05T21:07:31.387 回答