输出回调中的其他参数

时间:2017-10-24 17:46:15

标签: angular

有没有办法将父组件中的更多参数传递给子组件的@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
}

0 个答案:

没有答案