2 回答
TA贡献1831条经验 获得超9个赞
这是有意义的解决方案。
步骤1)在按钮中添加数据-###,并且它必须位于指定标题之前。
<a href="#"><i class="bx bxs-edit text-primary bx-sm edit" data-name="{{old('name') ?? $document->name}} " title="Edit Document"></i></a>
步骤2)在脚本中,您可以使用示例“$(this).data('name');”来获取数据
<script type="text/javascript">
$(document).ready( function () {
//Getting the datatable ready
var table = $('#indextable').DataTable();
//if the edit button is clicked
table.on('click', '.edit', function(){
var nameData = $(this).data('name');
$("#name").val(nameData);
$('#editModal').modal('show');
});
});
//On error keep the modal open
@if (count($errors) > 0)
$('#editModal').modal('show');
@endif
</script>
TA贡献1802条经验 获得超4个赞
例如,另一种选择是重新刷新会话;
//On error keep the modal open
@if (count($errors) > 0)
{{ Session::reflash()}}
$('#editModal').modal('show');
@endif
old('value')然后您可以在模态视图中使用标准语法。
- 2 回答
- 0 关注
- 138 浏览
添加回答
举报