Anglular8的@ViewChild的变化

配置ViewChild / ContentChild查询的时间
使用此功能时,必须提供静态标志以定义何时需要解析ViewChild和ContentChild实例。
使用此功能时,必须提供静态标志以定义何时需要解析ViewChild和ContentChild实例。

// Ensure Change Detection runs before accessing the instance
@ContentChild('foo', { static: false }) foo!: ElementRef;
// If you need to access it in ngOnInt hook
@ViewChild(TemplateRef, { static: true }) foo!: TemplateRef;

以上功能不适用于ViewChildren或ContentChildren。它们将在变更检测运行后解析。
需要注意的是,设置static: true将不允许您从动态模板分辨率(例如*ngIf)获得结果。
添加了原理图支持以将现有代码迁移到此语法,因为将使用此语法Ivy 。您可以运行ng update @angular/core以迁移现有代码。

    原文作者:快醒醒
    原文地址: https://segmentfault.com/a/1190000019921410
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞