父组件访问子组件,以news包含footer为例
1、@ViewChild(’’)
①在父组件引入子组件的html中给子组件加id
<app-footer #footer></app-footer>
②在父组件中引入ViewChild
import {
Component, OnInit, ViewChild } from '@angular/core';
引入子组件
父组件访问子组件,以news包含footer为例
1、@ViewChild(’’)
①在父组件引入子组件的html中给子组件加id
<app-footer #footer></app-footer>
②在父组件中引入ViewChild
import {
Component, OnInit, ViewChild } from '@angular/core';
引入子组件