角度:从表单外部检查表单是否有效(并显示错误消息)

时间:2019-01-18 23:41:37

标签: angular validation angular6 angular7 mdbootstrap

我有一个表单,但是我正在使用表单外的按钮将数据提交给API。 表单具有必填字段的错误消息,并显示嘿,然后用户选择一个输入但不填写任何数据(默认HTML5验证)。

由于我实际上没有提交表单,所以当用户单击表单外部的按钮时,是否可以显示相同的验证消息?

更新:添加了一些代码以进一步说明问题。另外,我忘了提到我使用Material Design for Bootstrap作为CSS框架。

表单HTML(component.html):

<form class="custom-form p-2">
    <div class="row">
      <div class="col-sm-6">
        <div class="md-form form-sm">
          <input mdbInputDirective type="text" id="title" [(ngModel)]="dataService.catalog.title" name="title"
            value="{{ dataService.catalog.title }}" required [validateSuccess]="false" placeholder=""
            data-error="This field is mandatory" class="form-control">
          <label for="title">Title</label>
        </div>
      </div>
      <div class="col-sm-2">
        <div class="md-form form-sm">
          <input mdbInputDirective type="date" id="date" [ngModel]="dataService.catalog.date | date:'yyyy-MM-dd'"
            name="date" (ngModelChange)="date = $event" required [validateSuccess]="false"
            placeholder="" data-error="This field is mandatory" class="form-control">
          <label for="date">Date</label>
        </div>
      </div>
      <div class="col-sm-12">
        <div class="md-form form-sm">
          <textarea type="text" id="description" [(ngModel)]="dataService.catalog.description" name="description"
            value="{{ dataService.catalog.description }}" required [validateSuccess]="false" placeholder=""
            data-error="This field is mandatory" class="md-textarea form-control" mdbInputDirective rows="3"></textarea>
          <label for="description">Description</label>
        </div>
      </div>
    </div>
</form>

按钮HTML(component.html):

<button mdbBtn type="button" color="success" class="waves-light" size="sm" mdbWavesEffect (click)="create()">
    <i class="fa fa-plus-square mr-sm-2 mr-1"></i> Create Catalog
</button>

创建方法(component.ts):

create() {
    //TODO: call the form's own validation method to show the erros?!   

    if(formValid) {
        this.dataService.create(this.dataService.catalog).subscribe(value => {
            console.log(value);
        }, error => {
            console.log(error);
        });
    }   
}

1 个答案:

答案 0 :(得分:0)

您可以使用自己的功能。就像存储每个文本框的值,然后单击“提交”按钮一样,验证您的值。