我是Angular 6的新手。我在调用方法另一个组件时遇到一些问题。 我有3个这样的组件
在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-->
谢谢