力触及 ngModel

问题描述

当我点击“提交”时,我想在角度材料中设置需要为红色,为此我需要强制触摸输入。

                <div class="formRow">
                    <mat-form-field class="profile-field" style="width: 40%" appearance="outline">
                        <input required #personalInfoFirstName 
                                class="profile-input" matInput
                               placeholder="firstname" name="firstName"
                               [(ngModel)]="firstName" #tst="ngModel">
                    </mat-form-field>
                </div>
                <div>touched = {{tst.touched}}</div>

如何将强制触摸 (tst.touched) 设置为 [(ngModel)]?

解决方法

抓取#tst,你可以使用tst.control.markAsTouched()来改变它的状态。