RangeError:使用反应形式超出了最大调用堆栈大小

问题描述

当我尝试更新 formArray 值时,我得到 RangeError: Maximum call stack size exceeded

onLastTestDateChange(lastTest: Date,index: number): void {
    const newIntervals: any[] = [...this.equipmentForm.controls.testIntervals.value];
    const intervalPeriod: any = this.testIntervals[index].value;

    const nextTest: Date = lastTest
      ? new Date(lastTest.getFullYear() + intervalPeriod,lastTest.getMonth(),lastTest.getDate())
      : null;

    newIntervals[index].lastTestDate = lastTest;
    newIntervals[index].nextTestDate = nextTest;

    this.testIntervalsControls.patchValue(newIntervals);
    this.testIntervalsControls.markAsTouched();
  }

这是我在 ngModelChange调用函数。我发现问题来自pathValue。有人知道如何解决这个问题吗?

先谢谢你!

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)