我想将一个值传递给子组件。这个值是一个 Observable,所以我使用异步管道。
<child [test]="test$ | async"></child>
test$ 只是一个普通的可观察变量,它会在一段时间(3000 毫秒)后发出值,模拟对服务器的 API 请求。
this.test$=timer(3000).pipe(
mapTo("value")
)
在子组件中,我只想检查test
值
@Input() test: any;
constructor(){
console.log("child/test", this.test); //null
setTimeout(()=>console.log("child/test (timeout)", this.test),4000) //value
if(this.test){
//maintain and check `this.test`
//this code will not run, because at this point `this.test` is null.
//we don't know the exact time that `this.test` will have a value
//this causes that `this.test` is wrong
this.checked=true
}
}
<div *ngIf="checked">{{test}}</div>
我不想更改测试类型Observable
并订阅它。我想直接接收最终值。而且我根本不想修改编辑组件。
使用ChangeDetectorRef
手动触发变化检测器不是
@Input() test$:Observable
constructor(){
this.test$.subscribe(v=>this.test=v)
}
我还制作了这个stackblitz来检查所有组件钩子之间的值变化。