Bom Dia, estou tentando passar itens de um ngFor feito na TR pra um modal, porem não consigo dentro da minha modal acessar o elemento [x], vou exemplificar:
<tbody id="myPager">
<tr *ngFor="let nota of notas">
<td>{{ nota["p1"] }}</td>
<td>{{ nota["p2"] }}</td>
<td>{{ nota["p3"] }}</td>
<td>{{ nota["media"] }}</td>
<td>
<a
type="button"
class="btn glyphicon glyphicon-plus"
data-toggle="modal"
data-target="#exampleModal"
data-whatever="@mdo"></a>
</td>
</tr>
</tbody>
</table>
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="exampleModalLabel">Informações da Nota</h4>
</div>
<div class="modal-body">
<table>
<tr>
<td> {{ nota[selecionada }} </td>
</tr>
</table>
<button> Fazer download</button>
</div>
</div>
</div>
</div>
queria saber como passar o índice selecionado para "nota" e acessar o item que foi selecionado.