表单验证不会更新错误 Reactive Forms Angular

问题描述 投票:0回答:1

电子邮件字段是必填字段,填写时,该字段中继续出现错误。

https://stackblitz.com/~/github.com/leandrolopes13/myapp

this.dataForm = this.formBuilder.group({
            email: new FormControl('', {
                validators: [ Validators.email, Validators.required ],
                asyncValidators: [ usernameValidator(this.usersService) ],
                // updateOn: 'change',
            })
});

电子邮件字段已填写并包含错误消息

电子邮件字段 HTML 的图像

注意:它不会在控制台或终端中给出错误消息。

angular angularjs ionic-framework
1个回答
0
投票

有一个错字。应该是

formControlName
而不是
formcontrolname
中的
home.page.html

© www.soinside.com 2019 - 2024. All rights reserved.