Angular 组件构造函数被调用两次
Angular Component Constructor Called Twice
我是 Angular 的新手,我 运行 遇到了子组件上的构造函数被调用两次的问题,第二次调用时清除了第一次设置的属性时间.
这是父组件:
@Component({
selector: 'parent-item',
templateUrl: '...',
providers: [ItemService]
})
export class ParentItemComponent {
public parentItemId;
public model: ParentItem;
constructor(itemService: ItemService, elm: ElementRef) {
this.parentItemId = elm.nativeElement.getAttribute('parentItemId');
itemService.getParentItem(this.parentItemId).subscribe(data => this.model = data);
}
}
并且在模板中引用了子组件:
<child-items [parentItemId]="parentItemId">Loading...</<child-items>
这是子组件:
@Component({
selector: 'child-items',
templateUrl: '...',
providers: [ItemService]
})
export class ChildItemsComponent {
@Input() public parentItemId: number;
public items: Observable<ChildItem[]>;
constructor(private itemService: ItemService) {
console.log("constructor");
}
ngOnInit() {
if (this.parentItemId) {
this.items = this.itemService.getChildItems(this.parentItemId);
}
else {
console.log("Parent Id not set!");
}
}
}
最后是子组件模板:
<tr *ngFor="let item of items | async">
<td>...</td>
</tr>
子组件构造函数被调用了两次,第二次调用时parentItemId 被设置为null,项目属性 被清除。如果我硬编码 parentId 而不是使用输入,数据将被正确接收并显示在模板中,但使用输入值时模板不会显示任何结果。
我创建了一个 plunker,它在此处显示了相同的行为:http://embed.plnkr.co/xaJtfNgbWCUPap2RCJUA/
您的问题是,在 app.module 中,您 bootstrap 父组件和子组件:
bootstrap: [ ParentItemComponent, ChildItemsComponent ]
必须是
bootstrap: [ ParentItemComponent]
child-items
没有正常关闭。可能是因为 this error
这个
<child-items [parentItemId]="parentItemId">Loading...</<child-items>
应该是:
<child-items [parentItemId]="parentItemId">Loading...</child-items>
我是 Angular 的新手,我 运行 遇到了子组件上的构造函数被调用两次的问题,第二次调用时清除了第一次设置的属性时间.
这是父组件:
@Component({
selector: 'parent-item',
templateUrl: '...',
providers: [ItemService]
})
export class ParentItemComponent {
public parentItemId;
public model: ParentItem;
constructor(itemService: ItemService, elm: ElementRef) {
this.parentItemId = elm.nativeElement.getAttribute('parentItemId');
itemService.getParentItem(this.parentItemId).subscribe(data => this.model = data);
}
}
并且在模板中引用了子组件:
<child-items [parentItemId]="parentItemId">Loading...</<child-items>
这是子组件:
@Component({
selector: 'child-items',
templateUrl: '...',
providers: [ItemService]
})
export class ChildItemsComponent {
@Input() public parentItemId: number;
public items: Observable<ChildItem[]>;
constructor(private itemService: ItemService) {
console.log("constructor");
}
ngOnInit() {
if (this.parentItemId) {
this.items = this.itemService.getChildItems(this.parentItemId);
}
else {
console.log("Parent Id not set!");
}
}
}
最后是子组件模板:
<tr *ngFor="let item of items | async">
<td>...</td>
</tr>
子组件构造函数被调用了两次,第二次调用时parentItemId 被设置为null,项目属性 被清除。如果我硬编码 parentId 而不是使用输入,数据将被正确接收并显示在模板中,但使用输入值时模板不会显示任何结果。
我创建了一个 plunker,它在此处显示了相同的行为:http://embed.plnkr.co/xaJtfNgbWCUPap2RCJUA/
您的问题是,在 app.module 中,您 bootstrap 父组件和子组件:
bootstrap: [ ParentItemComponent, ChildItemsComponent ]
必须是
bootstrap: [ ParentItemComponent]
child-items
没有正常关闭。可能是因为 this error
这个
<child-items [parentItemId]="parentItemId">Loading...</<child-items>
应该是:
<child-items [parentItemId]="parentItemId">Loading...</child-items>