formGroup expects a FormGroup instance

前端 未结 4 1718
无人及你
无人及你 2020-12-03 06:22

I have an Angular 2 RC4 basic form example on Plunkr that appears to throw the following error (In Chrome DEV console)

Here\'s the plunkr

https://plnkr.co/ed

4条回答
  •  庸人自扰
    2020-12-03 07:16

    I was using reactive forms and ran into similar problems. What helped me was to make sure that I set up a corresponding FormGroup in the class. Something like this:

    myFormGroup: FormGroup = this.builder.group({
        dob: ['', Validators.required]
    });
    

提交回复
热议问题