我正在尝试在Angular2应用程序中使用Reactive表单但是我遇到了如下例外
EXCEPTION:Uncaught(在promise中):TypeError:无法读取属性 '感动' null TypeError:无法读取属性'触及'为null
我的示例代码如下
import { Component, OnInit } from '@angular/core';
import { NgForm } from '@angular/forms';
import {FormGroup, FormControl} from '@angular/forms';
import { Customer } from './customer';
@Component({
moduleId:module.id,
templateUrl: 'sign-up.reactiveForms.html'
})
export class SignupComponent {
customer: Customer= new Customer();
customerForm : FormGroup; //it assosciate html element with this root model
ngOnInit() : void {
this.customerForm=new FormGroup({
firstName: new FormControl(),
lastName: new FormControl(),
email: new FormControl(),
sendCatalog: new FormControl(true)
});
}
save() {
console.log(this.customerForm);
}
}
sign-up.reactiveForms.html文件如下
<!-- First Name input -->
<div class="form-group"
[ngClass]="{'has-error': (customerForm.get('firstName').touched ||customerForm.get('firstName').dirty) && !customerForm.get('firstName').valid }">
<label class="col-md-2 control-label"
for="firstNameId">First Name</label>
<div class="col-md-8">
<input class="form-control"
id="firstNameId"
type="text"
placeholder="First Name (required)"
required
minlength="3"
formControlName="firstName"
/>
<span class="help-block" *ngIf="(customerForm.get('firstName').touched || customerForm.get('firstName').dirty) && customerForm.get('firstName').errors">
<span *ngIf="customerForm.get('firstName').errors.required">
Please enter your first name.
</span>
<span *ngIf="customerForm.get('firstName').errors.minlength">
The first name must be longer than 3 characters.
</span>
</span>
</div>
</div>
我想弄清楚为什么被触摸的属性为空。
答案 0 :(得分:1)
尝试并初始化您的表单控件,以便他们不会null
:
this.customerForm=new FormGroup({
firstName: new FormControl(''),
lastName: new FormControl(''),
email: new FormControl(''),
sendCatalog: new FormControl(true)
});
否则,使用安全导航操作符会删除空错误,例如:
customerForm.get('firstName')?.touched
但是,单独初始化表单控件应该(希望)处理这个问题。