我与this question有类似的问题,但似乎这个问题已经过时了,因为2个答案都不适合我。
子组件只是从作为输入传递的名为Proposal
的复杂对象中呈现数据(它根本没有用户控件,所以不需要触发任何事件或传递任何东西)。
@Component({
selector: 'fb-proposal-document',
templateUrl: './proposal-document.component.html',
styleUrls: ['./proposal-document.component.css']
})
export class ProposalDocumentComponent implements OnInit, OnDestroy {
@Input() proposal: Proposal;
constructor()
}
模板的相关部分是这样,迭代一个数组并检查属性以使用*ngIf
显示不同的文本:
<li class="section" *ngFor="let qp of proposal?.quoted_products">
<li class="section" *ngFor="let room of qp?.rooms">
...
<div class="row">
<div class="col-md-12">
Supply
<span *ngIf="room.is_fitted">
and install
</span>
<span *ngIf="!room.is_fitted">
only
</span>
</div>
</div>
...
</li>
</li>
在父级中,用户可以点击复选框以更改“is_fitted”#39;是真还是假。父级正在使用域驱动器表单。在父代的ngOnInit
中是这段代码:
this.myForm.controls['isFitted'].valueChanges.subscribe(
value => {
this.proposal.is_fitted = value;
let qp = this.proposal.quoted_products[this.qpCurrentIndex];
qp.rooms.forEach(function(room) {
room.is_fitted = value;
});
}
);
正确更新属性。我可以看到,如果我console.log
它。所以问题是,当嵌入的*ngIf
值发生变化时,如何让孩子重新/重新处理room.is_fitted
?
我尝试使用ViewChild实现this idea,因此ngOnInit中的上述代码变为:
this.myForm.controls['isFitted'].valueChanges.subscribe(
value => {
this.proposal.is_fitted = value;
let qp = this.proposal.quoted_products[this.qpCurrentIndex];
qp.rooms.forEach(function(room) {
room.is_fitted = value;
});
this.proposalDocument.notifyChange(this.proposal);
}
);
但这也不起作用。我的孩子中的notifyChange成功调用:
notifyChange(proposal: Proposal) {
console.log('I changed');
this.proposal = proposal;
}
但是视图没有更新 - *ngIf
逻辑没有得到重新处理。
答案 0 :(得分:0)
<强>更新强>
请参阅我的其他答案,因为现在这一切似乎都没有用。但我会留在这里,因为它可以帮助别人。
根据@JBNizet在该问题的评论中提供的链接,我尝试了这个解决方案:
ngOnChanges(changes: SimpleChanges){
console.log('I changed ngOnChanges');
console.log(changes);
for (let propName in changes){
if (propName == 'is_fitted') {
this.proposal.quoted_products.forEach(function(qp) {
qp.rooms.forEach(function(room) {
room.is_fitted = changes[propName].currentValue;
});
});
}
};
};
所以不是调用我的自定义notifyChange,而是调用这个ngOnChanges方法,如下所示:
this.myForm.controls['isFitted'].valueChanges.subscribe(
value => {
this.proposal.is_fitted = value;
this.proposalDocument.ngOnChanges({
is_fitted: value
});
}
);
新值到达孩子,我可以看到它在控制台中记录,属性在模型上更新,视图 NOW 更新。
我确实想知道这是否有效,以及我是否应该在此双循环之前和之后分离并重新连接,如下所示:
for (let propName in changes){
if (propName == 'is_fitted') {
console.log('detaching');
this.ref.detach();
this.proposal.quoted_products.forEach(function(qp) {
qp.rooms.forEach(function(room) {
room.is_fitted = changes[propName].currentValue;
});
});
this.ref.reattach();
this.ref.detectChanges();
}
};
this official guide中detectChanges()
的更多信息。
答案 1 :(得分:0)
我拿出了所有的代码,然后从头开始重新编写代码,现在我的拳头尝试起作用了:
start = "٠١/٢٦/٢٠١٧"
我根本不需要通知孩子。视图会自动更新。
我从所读到的所有内容中确信,复杂对象不会更新深层属性 - 只有在您更改对象本身的引用时。但在这里,我现在正在改变深层属性而且我没有通过调用ngOnChanges通知孩子,并且它有效。去图。