Angular5 父组件获取子组件实例( ViewChildren、ViewChild用法)
原文链接
Understanding ViewChildren, ContentChildren, and QueryList in Angular
使用场景
有时候,我们想要在父组件中访问它的子组件。在Angular中可以使用ViewChildren
ViewChild
ContentChildren
来实现对子组件的访问。
假设,我们封装了一个Alert
子组件
// alert.component.html
{{type}}
import { Component, OnInit, Input } from '@angular/core';@Component({selector: 'app-alert',templateUrl: './alert.component.html',styleUrls: ['./alert.component.scss']
})
export class AlertComponent implements OnInit {@Input() typ
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!