ng-template 被 Angular 用于模板化——这意味着它不会在 DOM 中呈现,除非某些条件告诉 Angular 在实际的 DOM 中使用它。
因此,当您在 ng-template 中有组件“接口设置”时 - 您的应用程序无法访问/知道它,除非:
- 应用了 ng-template 条件,并且
- 您的主机(父)组件引用了它:
例如,类似于您的示例:
<button type="button" (click)="hello.sayHello()">Method Inside Hello</button>
<ng-template>
<hello #hello></hello>
<ng-template>
由于不满足上述两个条件,上述内容本身不起作用。要解决此问题,您需要使用 ViewChild 来获取对 hello 组件的引用。像这样:
import { Component, ViewChild } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
@ViewChild('hello') hello;
}
然后你需要确保使用了 ng-template(无论什么触发 ng-template 被放置在你的应用程序的 DOM 中):
<ng-template [ngIf]="true">
<hello #hello></hello>
<ng-template>
现在对子组件内部方法的引用将起作用:
https://stackblitz.com/edit/angular-ivy-hnmw17?file=src/app/app.component.html
您可以阅读更多 Angular 的结构指令如何使用 ng-template:https ://angular.io/guide/structural-directives