![[Angular] FormGroup 관련 에러](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fbk3XWr%2FbtsBqgNOTKW%2Fqpts0WUkH2HUGnwINkiKw1%2Fimg.png)
Frontend/Angular2023. 3. 30. 23:23[Angular] FormGroup 관련 에러
Angular에서 FormGroup 사용 시 아래와 같이 에러가 발생할 경우 해결 방법에 대해 알아보겠습니다. Error ERROR Error: NG01350: ngModel cannot be used to register form controls with a parent formGroup directive. Try using formGroup's partner directive "formControlName" instead. Example: In your class: this.myGroup = new FormGroup({ firstName: new FormControl() }); Or, if you'd like to avoid registering this form control, indicate th..