在不使用@ViewChild批注的情况下访问组件

时间:2016-09-17 17:58:09

标签: angular viewchild

如何在不使用@ViewChild或@ViewChildren注释的情况下访问子组件?例如:

SubComponent getComponent() {
    return Whatever.getComponentBySelector('selector');
}

1 个答案:

答案 0 :(得分:0)

如果您需要访问的是值,那么您可以使用@output从子级或使用服务获取值,并使子级使用相关数据更新服务。如果它是你想要的。