Show Validation Message on submit in Angular 4 Reactive Forms

前端 未结 3 1991
不思量自难忘°
不思量自难忘° 2021-02-09 01:39

I am using Angular 4, Reactive forms.I want to show validation error message when the user clicks on Submit/Create Account button. Here is the HTML and typescript code that I a

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-09 02:19

    you can do this using from markAllAsTouched() method. it will mark all the form controls as touched and by doing so will trigger validation errors where needed

    onSubmit() {
        this.signupForm.markAllAsTouched();
    }
    

提交回复
热议问题