在实现我的代码时,我在控制台中遇到以下错误
错误:在 FormGroupDirective.push../node_modules/@angular/forms/fesm5/forms.js.FormGroupDirective 的 setUpControl (forms.js:1640) 的 _throwError (forms.js:1732) 找不到名称为“密码”的控件.addControl (forms.js:4454) 在 FormControlName.push../node_modules/@angular/forms/fesm5/forms.js.FormControlName._setUpControl (forms.js:4959) 在 FormControlName.push../node_modules/@angular /forms/fesm5/forms.js.FormControlName.ngOnChanges (forms.js:4909) 在 checkAndUpdateDirectiveInline (core.js:9244) 在 checkAndUpdateNodeInline (core.js:10512) 在 checkAndUpdateNode (core.js:10474) 在 debugCheckAndUpdateNode (core .js:11107) 在 debugCheckDirectivesFn (core.js:1106
我试图通过分组密码和重新密码控制来创建一个新的表单组,但它对我不起作用。
添加组织.ts
import { Component, OnInit } from '@angular/core';
import { FormControl, FormGroup, Validators } from '@angular/forms';
@Component({
selector: 'app-add-organization',
templateUrl: './add-organization.component.html',
styleUrls: ['./add-organization.component.css']
})
export class AddOrganizationComponent implements OnInit {
myform: FormGroup;
passwords: FormGroup;
organizationName: FormControl;
organizationAddress: FormControl;
pinCode: FormControl;
mobileNumber: FormControl;
organizationType: string[] = ["WholeSale","Retail"];
businessType: FormControl;
ownerName: FormControl;
password: FormControl;
rePassword: FormControl;
telephoneNumber: FormControl;
gstin: FormControl;
createFormControls() {
this.organizationName = new FormControl("", Validators.required);
this.ownerName = new FormControl("", Validators.required);
this.organizationAddress = new FormControl("", Validators.required);
this.pinCode = new FormControl("", Validators.required);
this.mobileNumber = new FormControl("", Validators.required);
this.telephoneNumber = new FormControl();
this.businessType = new FormControl("", Validators.required);
this.gstin = new FormControl("", [Validators.required]);
this.passwords = new FormGroup({
password: this.password = new FormControl("",[Validators.required,Validators.minLength(8)]),
repassword: this.rePassword = new FormControl("",[Validators.required])
},{ validators: this.passwordValidator }
)
}
passwordValidator(fb: FormGroup) {
let password = fb.controls.password.value;
let repass = fb.controls.repassword.value;
if (repass !== password) {
return {
passwordMatch: {
passwordMatch: password
}
}
}
return null;
}
createForm() {
this.myform = new FormGroup({
ownerName: this.ownerName,
organizationName: this.organizationName,
organizationAddress: this.organizationAddress,
pinCode: this.pinCode,
mobileNumber: this.mobileNumber,
telephoneNumber: this.telephoneNumber,
businessType: this.businessType,
gstin: this.gstin,
});
}
onSubmit() {
if (this.myform.valid) {
console.log("Form Submitted!");
console.log(this.myform.value);
this.myform.reset();
}
}
constructor() { }
ngOnInit() {
this.createFormControls();
this.createForm();
}
}
添加组织.html
<mat-form-field>
<input matInput placeholder="Set password" type = "password" formControlName="password">
<mat-error *ngIf="password.errors?.required">Password is required</mat-error>
<mat-error *ngIf="password.errors?.minlength">
Password must be {{password.errors.minlength.requiredLength}} characters long, we need another {{password.errors.minlength.requiredLength - password.errors.minlength.actualLength}} characters
</mat-error>
</mat-form-field>
<mat-form-field>
<input matInput placeholder="Re-Enter password" type = "password" formControlName="rePassword">
<mat-error *ngIf="rePassword.errors?.required">Password is required</mat-error>
<mat-error *ngIf="passwords.validators.passwordValidator">not match</mat-error>
</mat-form-field>
如果密码和 rePassword 不一样,我希望输出显示错误消息,否则不