有没有办法访问 CdkDragMove 事件对象中的当前索引
Is there any way to access the current index in the CdkDragMove event object
我正在使用 Angular CDK 拖放 (Material UI),我想在 CdkDragMove 事件对象中获取被拖动项目的当前索引。谁能指导我?
如果您使用 *ngFor
遍历列表,您可以使用 NgFor
上下文的 index
变量。
<div cdkDropList class="example-list" (cdkDropListDropped)="drop($event)">
<div class="example-box" *ngFor="let movie of movies; let i = index"
(cdkDragMoved)="move($event, i)" cdkDrag>{{movie}}</div>
</div>
我正在使用 Angular CDK 拖放 (Material UI),我想在 CdkDragMove 事件对象中获取被拖动项目的当前索引。谁能指导我?
如果您使用 *ngFor
遍历列表,您可以使用 NgFor
上下文的 index
变量。
<div cdkDropList class="example-list" (cdkDropListDropped)="drop($event)">
<div class="example-box" *ngFor="let movie of movies; let i = index"
(cdkDragMoved)="move($event, i)" cdkDrag>{{movie}}</div>
</div>