嗨,我是採用了棱角分明(4)和我有一個自定義的驗證,並通過ngIF
超時設置爲無角從驗證消息ngIF
inValid(fieldName: string) {
return (
this.form.get(fieldName).hasError('pattern') &&
this.form.get(fieldName).dirty &&
!this.required(fieldName)
);
}
顯示它,我希望延遲return
響應,使得用戶有時間在錯誤(如果有)消息顯示之前鍵入幾個字符。 name
是有問題的字段的值。即的firstName
HTML
<div *ngIf="inValid(fieldName)" class="error-message">
Invalid
</div>
理想像什麼在電子郵件字段用於在https://twitter.com/signup我不想提前使用.touched
感謝。