Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

Angular, BsDatepicker Format

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...