有没有办法将父组件中的更多参数传递给子组件的@Output
回调?我有一个子组件的动态列表,用户可以在其中执行某些操作。我想知道他在哪个部分执行了这个动作。
<div *ngFor="let order of orders; let i=index">
<h1>{{order.title}}</h1>
<child-component (onAction)="childComponentAction($event, i)"></child-component>
</div>
childComponentAction(actionResult: string, ind: number){
//some code here
}