1
我有這樣的代碼組件:如何檢查FormGroup輸入角
this.loginForm = this._fb.group({
phone: ['', [<any>Validators.required, <any>Validators.minLength(5)]],
password: ['', [<any>Validators.required, <any>Validators.minLength(7)]]
});
在形式上,我試圖表明的消息,如果輸入是無效的:
<small [hidden]="loginForm.controls.phone.invalid || (loginForm.controls.phone.pristine && !submitted)" class="text-danger">
但事實並非如此爲我工作
這'loginForm.controls.phone.pristine'給我一個錯誤:'未定義phone' – OPV
也許用'loginForm.controls [ '電話'] pristine'? – OPV
它不起作用,仍然是一個錯誤:undefined phone – OPV