I have had some problems, because I am not familiar with Angular 6. I have this table:
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Código</th>
<th>Nome</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let operator of dataSource">
<td>{{ operator.operatorId }}</td>
<td>{{ operator.name }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<button type="submit" class="btn btn-primary pull-right" >Atualizar</button>
</div>
<div class="col-md-6">
<button type="submit" class="btn btn-primary" >Deletar</button>
</div>
</div>
I need to edit it, so I can give an Update (Put or Patch). How do I do? I would like to not use jquery because I am inside the Angular.