如何在不包含角度6的情况下从另一个组件调用方法

时间:2018-07-23 01:44:55

标签: angular

我是Angular 6的新手。我在调用方法另一个组件时遇到一些问题。 我有3个这样的组件

  • app.component.ts
  • com.header.ts
  • app.component-user-profile.ts

在app.component.ts中,我包含com.header.ts

**com.header.html**
<com-header>{{fullName}}</com-header>
**com.header.ts**
private onGetUserInfo(){
   this.fullName = "My FullName"
}
public onTest(){
  this.onGetUserInfo();
}
**app.component-user-profile.html**
<com-header>{{fullName}}</com-header><!--Without Include-->
<button (click)="onTest();">call method form com.header.ts</button>
app.component-user-profile.ts
private onTest(){
   //call method form com.header.ts
    ????
}

如何在不包含include的情况下从com.header.ts调用方法中调用方法?
<com-header></com-header><!--Without Include-->

谢谢

0 个答案:

没有答案