为什么我不能将 JSON 数据加载到 html 表中[关闭]

问题描述 投票:0回答:0

我已经保存了数据和数据变量,但处理部分没有获取数据。帮帮我!

HTML:

<table id="Form1" class="table table-striped display nowrap" cellspacing="10px">                                
<thead>                             
  <tr>
    <th col-name="VesselName">Tên tàu</th>
    <th col-name="VesselID">Mã tàu</th>
    <th col-name="GroupVoyage">Chuyến</th>
  </tr>
</thead>
<tbody>                                                                   
</tbody>
</table>

Jquery AJAX:

   $.ajax({
  url: '/Tally/Tally/get1',
  dataType: 'json',
  success: function(data) {
    console.log(data);
    var html = '';
    $.each(data, function(index, item) {
      html += '<tr>';
      html += '<td>' + item.VesselName + '</td>';
      html += '<td>' + item.VesselID + '</td>';
      html += '<td>' + item.GroupVoyage + '</td>';
      html += '</tr>';
    });

    $('#Form1 tbody').html(html);
  },
  
  error: function(xhr, status, error) {
    console.log(xhr.responseText);
  }
});

我尝试编写 AJAX 部分,但无法转换。数据变量是存储为 AJAX 数据的 SQL 数据。

html jquery ajax
© www.soinside.com 2019 - 2024. All rights reserved.