角材料复选框验证

Ben*_*lly 2 typescript angular-material angular-validation angular

我想知道一种以相同的样式来验证所需复选框的方法,即角材料处理其他控件的验证-在表单提交时,除非触摸,否则控件显示为红色。

我想可以这样做,ng-style但是我想不出一种方法来检查表单是否已提交

这是HTML的代码段

 <form [formGroup]="frmFinish" name="frmFinish">
        <mat-checkbox required formControlName="check1">Discussed Confidentiality and Information Sharing with Service User</mat-checkbox>
        <mat-checkbox required formControlName="check2">Discussed Disposal and Storage of Injecting Equipment and Substances</mat-checkbox>
        <mat-checkbox required formControlName="check3">Discussed Overdose Risk and Prevention</mat-checkbox>

        <mat-form-field>
            <textarea formControlName="note" [(ngModel)]="stepFive.note" matInput placeholder="Any Additional Notes" matTextareaAutosize matAutosizeMinRows="2" matAutosizeMaxRows="5"></textarea>
            <mat-hint align="end">This will be added to the profiles note's</mat-hint>
        </mat-form-field>

        <mat-card-actions>
            <button mat-raised-button type="button" class="nav-btn pull-right" (click)="fillForm()" style="background: red">Fill Form</button>
            <button mat-raised-button class="nav-btn pull-right" style="margin-left:5px;" (click)="createProfile()" type="submit">Finish</button>
            <button mat-raised-button matStepperPrevious class="nav-btn pull-right">Previous</button>
        </mat-card-actions>
    </form>
Run Code Online (Sandbox Code Playgroud)

这是打字稿:

import { Component } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { CreateProfileComponent } from '../create-profile.component';

@Component({
    selector: 'step-five-component',
    templateUrl: './step-five.component.html',
    styleUrls: ['../create-profile.component.css']
})
export class StepFiveComponent {
    frmFinish: FormGroup;

    stepFive = {
        note: null
    };

    constructor(private formBuilder: FormBuilder) {
        this.frmFinish = this.formBuilder.group({});
    }

    ngOnInit() {
        this.frmFinish = this.formBuilder.group({
            note: ['', Validators.required],
            check1: ['', Validators.required],
            check2: ['', Validators.required],
            check3: ['', Validators.required],
        });
    }

    createProfile(){
        if(this.frmFinish.valid){
            console.log('Creating profile..');
        }else{

        }
    }

    fillForm(){
        this.stepFive.note = 'asdasd';
    }

}
Run Code Online (Sandbox Code Playgroud)

Lin*_*son 7

Angular 2.3.0版中已解决此问题。

只需使用:Validators.requiredTrue不是Validators.required

(请参阅GitHub 第11459期。请参阅Angular文档requiredTrue