請問 reactive form 問題
onchangeDate根據EffDate ,ExpDate 判斷做 setErrors 時,
希望可以在有給預設值時可以在ngOnInit後就觸發驗證, Form 可以顯示錯誤,範例還是要手動編輯EffDate ,ExpDate 才會顯示錯誤訊息
目前有查到 setTimeout 可以觸發…
請問有比較好的做法嗎?
// 加上 setTimeout Work // setTimeout(() => { controlEffDate.setErrors({ comparison: true }); controlExpDate.setErrors({ comparison: true }); controlEffDate.markAsTouched(); controlExpDate.markAsTouched(); // });