我有一个带有<ng-content>
标签的表单组件和 btn 目前什么都不做。我也有一个父组件,它使用简单的输入作为内容投影。
问题是,每当我单击按钮时,父组件和表单组件都会重新加载,并且页面会以初始状态刷新。
表单组件.html:
<form class="form-control">
<div class="form-group">
<ng-content></ng-content>
<button type="submit">Search</button>
</div>
</form>
父组件.html:
<app-form-component>
<input type="text" [(ngModel)]="car.id">
</app-form-component>
我觉得我错过了内容投影的一些基本内容。