我从http中使用rjsx获取我的数据(让它命名为customer
)。
然后我在客户中使用内部组件:
<customer>
<customer-form [customer]="customer"></customer-form>
</customer>
<!-- [customer]="customer" // here is data from http -->
以客户形式我有:
@Input() customer:ICustomer;
complexForm : FormGroup;
constructor(fb: FormBuilder) {
this.complexForm = fb.group({
'name': [this.customer['name'], Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(255)])]
});
}
但我明白了:
Cannot read property 'name' of undefined
TypeError: Cannot read property 'name' of undefined
如果我理解正确:这是因为调用了构造函数,但是还没有从http中获取数据,因此customer
为空。但是如何解决这个问题?
upd:我的http数据得到:
getCustomer(id) {
this.customerService.getCustomer(id)
.subscribe(
customer => this.customer = customer,
error => this.errorMessage = <any>error);
}
----
@Injectable()
export class CustomerService {
private customersUrl = 'api/customer';
constructor (private http: Http) {}
getCustomers (): Observable<ICustomer[]> {
return this.http.get(this.customersUrl)
.map(this.extractData)
.catch(this.handleError);
}
getCustomer (id): Observable<ICustomer> {
return this.http.get(this.customersUrl + '/' + id)
.map(this.extractData)
.catch(this.handleError);
}
private extractData(res: Response) {
let body = res.json();
return body || { };
}
private handleError (error: Response | any) {
// In a real world app, we might use a remote logging infrastructure
let errMsg: string;
if (error instanceof Response) {
const body = error.json() || '';
const err = body.error || JSON.stringify(body);
errMsg = `${error.status} - ${error.statusText || ''} ${err}`;
} else {
errMsg = error.message ? error.message : error.toString();
}
console.error(errMsg);
return Observable.throw(errMsg);
}
}
答案 0 :(得分:5)
正如@Bhushan Gadekar所说,你是在没有初始化时访问客户。
有多种方法可以正确处理:
@Input("customer")
set _customer(c:ICustomer){
this.customer=c;
this.complexForm.get("name").setValue(c.name,{onlySelf:true});
}
customer:ICustomer;
complexForm : FormGroup;
constructor(fb: FormBuilder) {
this.complexForm = fb.group({
'name': [null, Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(255)])]
});
}
Observable
此处,客户需要Observable
ICustomer
@Input() customer:Observable<ICustomer>;
complexForm : FormGroup;
constructor(fb: FormBuilder) {
this.complexForm = fb.group({
'name': [this.customer['name'], Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(255)])]
});
}
ngOnInit(){
this.customer.map(c=>this.complexForm.get("name").setValue(c.name,{onlySelf:true}))
.subscribe();
}
@Input("customer")
set _customer(c:ICustomer){
this.customer.next(c);
}
customer=New Subject<ICustomer>();
complexForm : FormGroup;
constructor(fb: FormBuilder) {
this.complexForm = fb.group({
'name': [null, Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(255)])]
});
}
ngOnInit(){
this.customer.map(c=>this.complexForm.get("name").setValue(c.name,{onlySelf:true}))
.subscribe();
}
如果您不想逐个编写每个表单更新,并且如果表单的字段名称与您的对象相同,则可以遍历客户属性:
Object.keys(customer).forEach(k=>{
let control = this.complexForm.get(k);
if(control)
control.setValue(customer[k],{onlySelf:true});
});
请注意,只有当您的表单控件的命名方式与客户的属性相同时,此代码才能。如果没有,您可能需要将客户属性名称哈希映射到formControls名称。
Yous永远不应该从构造函数访问输入,因为它们尚未填充,所有输入应该在ngOnInit
挂钩之前填充(至少是同步的)。看看Lifecycle hooks documentation
答案 1 :(得分:0)
我可以看到你在没有填充customer
对象时试图访问它。
这里的问题是http调用需要一些时间才能解决。但是,即使未定义客户对象,您的视图也会尝试访问客户对象。
试试这个:
<customer *ngIf="customer">
<customer-form [customer]="customer"></customer-form>
</customer>
虽然您访问name
财产的方式也不好。
最佳方法是创建客户模型并将您的财产用作className.propertyName
锄头有帮助。
答案 2 :(得分:0)
尝试ngAfterViewInit
而不是ngOnInit答案 3 :(得分:0)
不要在component.ts中使用subscribe
并在component.html中添加异步管道,如下所示:
<customer-form [customer]="customer | async"></customer-form>