Когда мой контроллер возвращает мои данные json с контроллера,
_yonetimRepo.Uniler();
IList<YonetimModel.Universiteler> Uniler = _yonetimRepo.Uniler();
return Json(new { data = Uniler }, JsonRequestBehavior.AllowGet);
и это мой HTML:
<table id="example" class="display" style="width:100%">
<thead>
<tr>
<th>Id</th>
<th>Üniversite</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Id</th>
<th>Üniversite</th>
</tr>
</tfoot>
<script>
$(document).ready(function () {
$('#example').DataTable({
"processing": true,
"serverSide": true,
"ajax": {
"url": "Home/Yonet",
"type": "POST"
},
"columns": [
{ "data": "Id" },
{ "data": "Universite" }
]
});
});
я просто получаю свой результаткак массив json в конце концов на html-странице, не могу вставить данные в datatable pls, помогите мне в этом