创建动态组件后,调用componentRef.instance不能更新界面数据

发布于 2022-09-06 02:10:33 字数 224 浏览 10 评论 0

发现在动态组件创建后,使用动态组件的实例(componentRef.instance)去改变动态组件的属性,如:
componentRef.instance.xxx="123"
界面上的绑定的{{xxx}},不会更新
但控制台输出得知,其中的xxx确实已经变更。
而直接在动态组件类中使用函数,可以改变xxx,且{{xxx}}实时更新了。
如果才能让使用componentRef时,绑定的数据实时更新呢?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漫雪独思 2022-09-13 02:10:33

亲测有效,唯一无效的一点是覆盖 instance 的值不会触发 OnChanges 钩子。

@Component({
    template: `
        我是测试模板 {{data}}
    `
})
export class CustomComponent implements OnInit {
    @Input() public data: string;
    public ngOnInit() {
        console.log(this.data);
        setTimeout(() => {
            console.log(this.data);
        }, 3000);
    }
}
export class HomeComponent implements OnInit {
    constructor(
        private viewContainerRef: ViewContainerRef,
        private cfr: ComponentFactoryResolver
    ) {}
    public ngOnInit() {
        let factory = this.cfr.resolveComponentFactory(CustomComponent);
        let componentRef = this.viewContainerRef.createComponent(factory);
        componentRef.instance.data = 'hello';
        setTimeout(() => {
            componentRef.instance.data = 'bye';
        }, 2000);
    }
}

clipboard.png

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文