错误TypeError:this.dateDebut.getTime不是函数:Angular5

时间:2018-05-30 14:10:09

标签: angular angular5 frontend

我正在使用angular5,我有两个输入类型日期。 如果第一个日期输入大于第二个日期输入,我正在尝试不验证表单。

所以有两种情况:

  1. 当dateOne> dateTwo时,会向用户显示一条错误消息。
  2. 当dateOne 用户可以提交表单。
  3. 这是我试图做的代码:

    这是.html文件:

        <div class="modal-body">
        <form [formGroup]="form" (ngSubmit)="addProjecToClients()">
            <div class="form-group row">
              <label class="col-sm-5 col-form-label">Choisir un client : </label>
    
    
              <div class="col-sm-6">
    
                <ng-select  *ngIf="_listClients"
                             [items]="_listClients"
                              bindLabel ="nom"
                              bindValue ="id"
                            [(ngModel)]="selectedPersonId"
                            formControlName="selectedPersonId"
                             >
                </ng-select>
    
              </div>
            </div>
    
            <label class="col-sm-5 col-form-label">Information liées au contrat : </label>
            <div class="form-group row">
              <label class="col-sm-5 col-form-label" >Date one :  </label>
              <div class="col-sm-6">
                <input type="date" class="form-control form-control-sm"
                       placeholder=".form-control-sm"  [(ngModel)]="dateOne"
    formControlName="dateOne">
              </div>
            </div>
    
            <div class="form-group row">
              <label class="col-sm-5 col-form-label" for="input-small">Date two : </label>
              <div class="col-sm-6">
                <input type="date" id="input-small" name="input-small" class="form-control form-control-sm"
                       placeholder=".form-control-sm"  [(ngModel)]="dateTwo" 
        formControlName="dateTwo">
    
     <span style="color:red" *ngIf="validation()">DateTwo must be greater than dateone</span>
    
              </div>
            </div>
          </div>
    
         <button type="submit" class="btn btn-primary"  [disabled]="!form.valid" >Save changes</button>
    
    </form>
    

    这是.ts文件:

     export class ProjectsComponent implements OnInit {
    
        dateOne:new Date() ;
        dateTwo:new Date(); 
    
         ngOnInit() {
    
        this.doSearch();
        this.dateOne= null;
        this.dateTwo= null;
    
     this.form = this.formBuilder.group({
          dateOne: ['', Validators.required],
          dateTwo: ['', Validators.required],
           selectedPersonId: ['', Validators.required]
        });
    
    }
    
    validation(){
        if(this.dateOne && this.dateTwo){
          if(this.dateOne.getTime() < this.dateTwo.getTime()){
            return false;
          }
          else
            return true;
        }
    
          }
    
        }
    

    但是我收到了这个错误:

    ERROR TypeError: this.dateOne.getTime is not a function
    at ProjectsComponent.validation (projects.component.ts:65)
    at Object.eval [as updateDirectives] (ProjectsComponent.html:89)
    at Object.debugUpdateDirectives [as updateDirectives] (core.js:14638)
    at checkAndUpdateView 
    

1 个答案:

答案 0 :(得分:1)

&#34; typeof&#34; this.dateOne和this.dateTwo将是字符串,您需要在使用getTime()函数之前将其转换为Date()类型。

new Date(this.dateOne).getTime()