Adding formControlName makes the default value disappear in my form's dropdown in Angular
问题 I have this select element and I'm seeing something odd, when I add the formControlName to the tag the initial value "month" doesn't display, but if I remove it, it displays but doesn't validate correctly because it can't bind. Here is my form and the html this.registerForm = this.fb.group({ gender: ['male'], email: ['', [Validators.required, Validators.email]], username: ['', [Validators.required, Validators.minLength(4), Validators.maxLength(10)]], month: ['', Validators.required], day: [''