Sto lavorando su un modulo di accesso e se l'utente immette credenziali non valide, vogliamo contrassegnare entrambi i campi e-mail e password come non validi e visualizzare un messaggio che indica che l'accesso non è riuscito. Come faccio a impostare questi campi come non validi da un callback osservabile?
Modello:
<form #loginForm="ngForm" (ngSubmit)="login(loginForm)" id="loginForm">
<div class="login-content" fxLayout="column" fxLayoutAlign="start stretch">
<md-input-container>
<input mdInput placeholder="Email" type="email" name="email" required [(ngModel)]="email">
</md-input-container>
<md-input-container>
<input mdInput placeholder="Password" type="password" name="password" required [(ngModel)]="password">
</md-input-container>
<p class='error' *ngIf='loginFailed'>The email address or password is invalid.</p>
<div class="extra-options" fxLayout="row" fxLayoutAlign="space-between center">
<md-checkbox class="remember-me">Remember Me</md-checkbox>
<a class="forgot-password" routerLink='/forgot-password'>Forgot Password?</a>
</div>
<button class="login-button" md-raised-button [disabled]="!loginForm.valid">SIGN IN</button>
<p class="note">Don't have an account?<br/> <a [routerLink]="['/register']">Click here to create one</a></p>
</div>
</form>
Metodo di accesso:
@ViewChild('loginForm') loginForm: HTMLFormElement;
private login(formData: any): void {
this.authService.login(formData).subscribe(res => {
alert(`Congrats, you have logged in. We don't have anywhere to send you right now though, but congrats regardless!`);
}, error => {
this.loginFailed = true; // This displays the error message, I don't really like this, but that's another issue.
this.loginForm.controls.email.invalid = true;
this.loginForm.controls.password.invalid = true;
});
}
Oltre a impostare il flag di input non valido su true, ho provato a impostare il email.valid
flag su false e anche l'impostazione loginForm.invalid
su true. Nessuno di questi fa sì che gli input mostrino il loro stato non valido.
setErros
metodo. Suggerimenti: è necessario aggiungere il validatore richiesto al file del componente. C'è anche un motivo specifico per usare ngModel con forme reattive?