I hope everyone is okay, I am new to angular so I have a problem with this input, it's working fine but always returns the error:
Property 'startDate' does not exist on type 'AddComponent'
, but it exists in the component
This is for componenent.html
<form [formGroup]= "parentForm" (submit) = "persistEvent()"> <input type="text" class="form-control" name="startDate" id="startDate" formControlName="startDate" bsDatepicker [(bsValue)]="startDate" value="{{ startDate.value | date:'yyyy-MM-dd'}}" > </form>
This is for componenent.ts
@Component({
selector: 'app-add',
templateUrl: './add.component.html',
styleUrls: ['./add.component.css']
})
export class AddComponent implements OnInit {
constructor(
private fb: FormBuilder
) { }
parentForm: FormGroup;
this.parentForm = this.fb.group({
startDate: new FormControl('', [
Validators.required
]) })
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…