Привет, у меня возникли проблемы при попытке отправить мои данные в контроллер через ajax.У меня есть данные, как это:
<table class=" w-100 mr-3 ml-3" id="mytable">
<thead>
<tr>
<th class="text-left">Code</th>
<th class="text-left">Date</th>
<th class="text-left">Colocacion</th>
<th class="text-left">Amount</th>
<th class="text-left">Bank</th>
<th class="text-left">Company</th>
</tr>
</thead>
<tbody>
@foreach (var obj in Model.List)
{
<tr>
<td class="text-left">@obj.Code</td>
<td class="text-left">@obj.Date</td>
<td class="text-left">@obj.Colocacion</td>
<td class="text-left">@obj.Amount/td>
<td class="text-left">@obj.Bank</td>
<td class="text-left">@obj.Company</td>
</tr>
}
</tbody>
</table>
}
Можете ли вы, ребята, сказать мне, как это сделать?Я попробовал:
var data = $('#mytable').DataTable().data();
$.ajax({
type: 'POST',
url: '../CompraChequeDiferido/Acept',
dataType: 'json',
contentType: 'application/json; charset=utf-8',
data: json.stringify(data),
});
Sry для моего английского.