为什么我的表格显示错误“表格中没有可用数据”,并在下方显示“显示0个条目中的0个”。 Here is the screenshot
我不知道为什么会这样。我正在使用mysqli_fetch_assoc从查询中获取数据。
<div class="card mb-3">
<div class="card-header">
<i class="fas fa-table"></i>
Data Table
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Ref. No.</th>
<th>Date/Time</th>
<th>Line No.</th>
<th>Optr. Name</th>
<th>Weight</th>
<th>Moisture</th>
<th>Product ID</th>
<th>Item Code</th>
</tr>
<?php while ($rows = mysqli_fetch_assoc($sql)) { ?>
<tr>
<td><?php echo $rows['mb_refno']; ?></td>
<td><?php echo $rows['mb_weight_dt']; ?></td>
<td><?php echo $rows['mb_line_id']; ?></td>
<td><?php echo $rows['mb_opt_name']; ?></td>
<td><?php echo $rows['mb_weight']; ?></td>
<td><?php echo $rows['mb_moisture']; ?></td>
<td><?php echo $rows['mb_prod_id']; ?></td>
<td><?php echo $rows['mb_prod_code']; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
<div class="card-footer small text-muted">Updated yesterday at 11:59 PM</div>
</div>
<tbody>
<?php while ($rows = mysqli_fetch_assoc($sql)) { ?>
<tr>
<td><?php echo $rows['mb_refno']; ?></td>
<td><?php echo $rows['mb_weight_dt']; ?></td>
<td><?php echo $rows['mb_line_id']; ?></td>
<td><?php echo $rows['mb_opt_name']; ?></td>
<td><?php echo $rows['mb_weight']; ?></td>
<td><?php echo $rows['mb_moisture']; ?></td>
<td><?php echo $rows['mb_prod_id']; ?></td>
<td><?php echo $rows['mb_prod_code']; ?></td>
</tr>
<?php } ?>
</tbody>
答案 0 :(得分:1)
FYI dataTables需要一个格式正确的表。它必须包含<thead>
和<tbody>
标签,否则会引发此错误。另外,请检查并确保所有行(包括标题行)的列数均相同。
<div class="card mb-3">
<div class="card-header">
<i class="fas fa-table"></i>
Data Table
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Ref. No.</th>
<th>Date/Time</th>
<th>Line No.</th>
<th>Optr. Name</th>
<th>Weight</th>
<th>Moisture</th>
<th>Product ID</th>
<th>Item Code</th>
</tr>
</thead>
<tbody>
<?php while ($rows = mysqli_fetch_assoc($sql)) { ?>
<tr>
<td><?php echo $rows['mb_refno']; ?></td>
<td><?php echo $rows['mb_weight_dt']; ?></td>
<td><?php echo $rows['mb_line_id']; ?></td>
<td><?php echo $rows['mb_opt_name']; ?></td>
<td><?php echo $rows['mb_weight']; ?></td>
<td><?php echo $rows['mb_moisture']; ?></td>
<td><?php echo $rows['mb_prod_id']; ?></td>
<td><?php echo $rows['mb_prod_code']; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
<div class="card-footer small text-muted">Updated yesterday at 11:59 PM</div>
</div>
答案 1 :(得分:0)
您只能使用mysqli_fetch_assoc
读取一次查询结果。如果您尝试再次阅读它,则会收到错误消息。如果您确实想读取两次查询结果,则必须首先再次执行查询。