Show Validation Message on submit in Angular 4 Reactive Forms

前端 未结 3 2058
不思量自难忘°
不思量自难忘° 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:09

    Something like

    onSubmit() {
        console.log(this.signupForm)
        this.signupForm.controls['firstname'].markAsTouched()
    }
    

提交回复
热议问题