gpt4 book ai didi

Angular 6 : Create dynamic reactive form but got an Error: "formGroup expects a FormGroup instance. Please pass one in"

转载 作者:搜寻专家 更新时间:2023-10-30 21:47:46 25 4
gpt4 key购买 nike

我目前正在使用 Angular 6 创建一个带有 Reactive Form 的 Accordion。我也在使用 primeNG 的 Accordion 模块。

基于对象(cuList),将动态创建FormControl(输入框)。我创建了一个 FormGroup 并使用 FormBuilder 动态添加了组。但是,我在运行时遇到了这个错误: error message from console (如果链接不起作用,请查看下面的错误消息)

ERROR Error: "formGroup expects a FormGroup instance. Please pass one in.
Example:


<div [formGroup]="myGroup">
<input formControlName="firstName">
</div>

In your class:

this.myGroup = new FormGroup({
firstName: new FormControl()
});"

ERROR TypeError: "this.form is undefined" 3 次。

我根据一些stackoverflow的答案尝试了一些方法。它没有解决我的问题。

为了便于阅读,我简化了代码。

组件 HTML

<p-accordion #accordion [hidden]="!cuList" [multiple]="true">
<form *ngIf="cuList" [formGroup]="reportForm" role="form">
<p-accordionTab header="{{ cu.code }} - {{ cu.name }}" *ngFor='let cu of cuList; let counter = index' [selected]="counter===0">
<div class="input-group">
<input class="form-control"
name="wages"
placeholder=""
formControlName="wages_{{ counter }}"
currencyMask
[(ngModel)]="cu.wage"
[options]="{ prefix: '$ ', thousands: ',', allowNegative: false, precision: 0}"
maxlength="15"
required />
<div class="input-group-append">
<span class="input-group-text">.00</span>
</div>
</div>
<div class="input-group">
<input class="form-control"
name="payments"
placeholder=""
formControlName="subkPay_{{ counter }}"
currencyMask
[(ngModel)]="cu.subcontractorPayment"
[options]="{ prefix: '$ ', thousands: ',', allowNegative: false, precision: 0}"
maxlength="15"
required />
<div class="input-group-append">
<span class="input-group-text">.00</span>
</div>
</div>
<div class="input-group">
<input class="form-control"
name="excessPayroll"
currencyMask
formControlName="exsPay_{{ counter }}"
[(ngModel)]="cu.excessPayroll"
[options]="{ prefix: '$ ', thousands: ',', allowNegative: false, precision: 0}"
maxlength="15"
required />
<div class="input-group-append">
<span class="input-group-text">.00</span>
</div>
</div>
</p-accordionTab>
</form>
</p-accordion>

组件 ts

export class EmployerCuListComponent implements OnInit {
@ViewChild('accordion') accordion: Accordion;
reportForm: FormGroup; // form
cuList: EmployerCu[];

constructor(private _fb: FormBuilder) {
}

ngOnInit() {
this._employercuService.getEmployerCu().subscribe(data => {
this.cuList = data;
});
if (this.cuList) {
this.createForm(this.cuList);
}
}

createForm(cuList: EmployerCu[]) {
const group = {};

cuList.forEach((cu, index) => {
group['wages_' + index] = ['', [Validators.required]];
group['subkPay_' + index] = ['', [Validators.required]];
group['exsPay_' + index] = ['', [Validators.required]];
});
this.reportForm = this._fb.group(group); // create form with FormBuilder
}
}

我假设这是一个时间问题?以及在对象初始化之前加载的页面?

求助!提前致谢!

最佳答案

我认为这是一个时间问题,我想我知道解决办法。变化:

ngOnInit() {
this._employercuService.getEmployerCu().subscribe(data => {
this.cuList = data;
});
if (this.cuList) {
this.createForm(this.cuList);
}
}

为此:

 ngOnInit() {
this._employercuService.getEmployerCu().subscribe(data => {
this.cuList = data;
if (this.cuList) {
this.createForm(this.cuList);
}
});
}

我相信如果没有这个改变,if 语句总是在 this.cuList 被设置之前命中,因此 this.createForm 永远不会被调用。

这是由于 .subscribe() 方法的异步性质。

还有:你可以验证这一点,但放一个

调试器;

在你的 ngOnInit() 顶部声明,如果你这样做,你应该能够在浏览器的开发控制台中单步执行你的代码。

关于 Angular 6 : Create dynamic reactive form but got an Error: "formGroup expects a FormGroup instance. Please pass one in",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51737263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com