0
空のフィールドの検証を表示したいのですが、私は次のメソッドを使用していますが、作業していません。誰でも助けてください。ボタンのクリックでtypescriptを表示する方法
マイテンプレート、
<form [formGroup]="form" (ngSubmit)="onSubmit(form.value)" class="nobottommargin adminloginform" novalidate>
<label class="col-sm-4 text-right norightpadding">First Name</label>
<div class="input-group" [ngClass]="{errmsg: (!form.controls['password'].valid ||
(!form.controls['password'].pristine && submitted))}">
<input type="text" [formControl]="form.controls['lastname']" >
</div>
<div class="col-sm-8">
<button type="submit" >Register now</button>
</div>
マイTS、
export class SignUp {
submitted: boolean = false;
constructor(public fbld: FormBuilder, http: Http, public config: Config, public router: Router) {
this.http = http;
this.form = fbld.group({
firstname: ['', Validators.required],
});
this.header = this.config.header1;
}
onSubmit(form: ISignup): any {
this.submitted = true;
}
}
何を "そのが正確に平均動作していない" のでしょうか? –
空のフォームの[送信]ボタンをクリックすると、検証が適用されません。 – MMR