Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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
     ]) })
 }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.6k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...