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

标签 angular typescript angular6 angular-reactive-forms

我目前正在使用 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/

相关文章:

javascript - Angular @input 属性以感叹号结尾?

Angular2 rc5 : No provider for Http

javascript - ng2-ckeditor 如何在编辑器未自动加载时将焦点设置到编辑器

typescript - 基于类的vue组件属性定义: constructor vs. getter/setter vs. mounted生命周期

javascript - 有没有办法为 Javascript/Typescript 模块自动声明外部导出?

javascript - rxjs5 - 通过每个对象包含的可观察对象过滤对象数组

angular6 - Angular Material Design 上的分页 - 显示页码或删除行数

angularjs - Angular 2+(Angular 7)是否有代码差异组件

Angular 父组件监听 ng-content 子组件

css - 无需编译即可打包 Angular 元素