我有一个表格,显示来自公共/文件夹的所有文件,
格式名称为1_CCA-2018-0182224-720422085426
1_CCA-2018-0182224 ,这是帐户ID
720422085426 ,这是ID号
当用户选中我要将文件名保存到2列的复选框时(帐户ID和ID NO)
我使用隐藏来获取ID NO值,但是问题是ID NO的值与文件名不匹配,
如果我将最后一条记录加粗,则ID NO将在最后一条记录之前保存ID NO,
但是如果第一条记录较厚,则ID NO正确保存,
有人可以帮助我吗?
<table id="dataTable" class="table table-bordered table-condensed table-hover table-striped" width="100%" border="1">
<thead>
<tr>
<th width="5%">No</th>
<th width="45%">Account ID & ID No</th>
<th data-checkbox="true" width="5%"></th>
</tr>
</thead>
<tbody>
<?php $i = 1; ?>
<tr>
<td>1</td>
<td>123</td>
<td>
<input type="checkbox" name="account_id[]" value="{{ substr($file,10,18) }}">
<input type="hidden" name="file[]" value="{{$file}}">
<input type="hidden" name="id[]" value="{{ substr($file,29,12) }}">
</td>
</tr>
<tr>
<td>2</td>
<td>1234</td>
<td>
<input type="checkbox" name="account_id[]" value="{{ substr($file,10,18) }}">
<input type="hidden" name="file[]" value="{{$file}}">
<input type="hidden" name="id[]" value="{{ substr($file,29,12) }}">
</td>
</tr>
<?php $i++; ?>
</tbody>
</table>
答案 0 :(得分:0)
您应该可以使用以下方法同步数据检索:
foreach($request->id as $key => $value) {
$id = $value;
$file = $request->file[$key];
$accountId = $request->account_id[$key] ?? null;
if ($accountId) {
// do stuff if checkbox was ticked
} else {
// do stuff if checkbox wasn't ticked
}
}