在asp.net WebApi中将表数据序列化为IEnumerable

本文关键字:数据 序列化 IEnumerable asp net WebApi | 更新日期: 2023-09-27 18:24:11

我有一个web api应用程序,其中有以下代码

  public class FiltredDriverAgendaModel
    {
        public int Id_driver_agenda { get; set; }
        public string name_driver_agenda { get; set; }
        public bool isDriveChecked { get; set; }
    }

Html部件

<table id="tbldriver" class="table table-bordered table-striped">
                                            <thead>
                                                <tr style="color:white;background-color:#3c8dbc">
                                                    <th>Id chauffeur</th>
                                                    <th>Chauffeur</th>
                                                    <th> </th>
                                                </tr>
                                            </thead>
                                            <tbody id="tbldriverBody"></tbody>
                                        </table>

我在javascript部分中填写如下表:

 function GetFiltredDrivers() {
        $.ajax({
            type: "Get",
            url: "/api/AccountManage/GetAllChauffeurs",
            success: function (data) {
                EmptyGridFilter();
                for (var i = 0; i < data.length; i++) {
                    var chauffeur = data[i];   
                    $('#tbldriverBody').append('<tr><td><input type="text" readonly name="Id_driver_agenda" value="'+ chauffeur.id+'" />  </td>'
                   + '<td><input type="text"  name="name_driver_agenda" readonly value="' + chauffeur.Nom + " " + chauffeur.Prenom + '" /></td>'
                   + '<td><input type="checkbox"  name="isDriveChecked" checked /> </td></tr>');
                }
                initGridDriver();
                } 
        });
    }
function initGridDriver() {
    var table = $('#tbldriver').dataTable({
        "processing": true,
        "bPaginate": true,
        "bLengthChange": false,
        "bFilter": true,
        "bSort": false,
        "bInfo": true,
        "responsive": true,
        "scrollX": true,
        "scrollY": "200px",
        "scrollCollapse": true,
        "bAutoWidth": false,
        "language": { "url": "//cdn.datatables.net/plug-ins/1.10.7/i18n/French.json" },
        "lengthMenu": [[50, 100, 250, 500, -1], [50, 250, 500, "Tout"]],
        "destroy": true,
        "columnDefs": [
   { "width": "20%", "targets": 0 },
    { "width": "50%", "targets": 1 },
     { "width": "30%", "targets": 2 } 
        ],
        "bAutoWidth": false
    });
    $("#tbldriver tr").css('cursor', 'pointer');
    $('#tbldriverBody').on('click', 'tr', function () {
        if ($(this).hasClass('selected')) {
            $(this).removeClass('selected'); 
        }
        else {
            table.$('tr.selected').removeClass();
            $(this).addClass('selected'); 
        }
    });
}

我打了一个Ajax电话:

 $.ajax({
        type: "post",
        async: false,
        url: "/api/Demande/ReservationAgendaByDrivers",
        data: $("#tbldriver input").serialize(),
        success: function (data) {
      .............
       }

问题是当我像这样创建服务ReservationAgendaByDrivers时:

[HttpPost]
        public IEnumerable<ReservationModel> ReservationAgendaByDrivers(List<FiltredDriverAgendaModel> obj) {}

我得到了这样一个问题:obj总是将null作为一个值。

所以我需要知道:

  1. 我必须选择的控制器参数类型是什么
  2. 为什么该值为null
  3. 如何修复我的代码

谢谢,

在asp.net WebApi中将表数据序列化为IEnumerable

您需要正确命名输入。

我尝试了以下操作,它对我有效-只需在obj[index].properties中替换输入的"name"属性即可:

<tr><td><input type="text" readonly name="obj['+i+'].id" value="'+ chauffeur.id+'" />  </td>'
               + '<td><input type="text"  name="obj['+i+'].Nom" ...

(假设.id和.Nom是模型中的属性)