gpt4 book ai didi

javascript - Laravel yajra/Datatables 操作删除不起作用

转载 作者:行者123 更新时间:2023-11-30 12:09:00 29 4
gpt4 key购买 nike

嘿,我现在正在使用 L5 和 yajra/datatables 插件,一切正常,直到我创建删除按钮来删除记录,删除按钮不起作用
这是我的 Controller :

public function data() 
{
$news = DB::table('news')
->join('users', 'news.user_id', '=', 'users.id')
->select(['news.id', 'news.judul', 'news.gambar', 'users.name']);

return Datatables::of($news)
->addColumn('action', function ($id) {
return '<a href="news/' . $id->id . '/edit" class="btn btn-primary">Edit</a>
<button class="btn-delete" data-remote="/news/' . $id->id . '">Delete</button>';
})->make(true);
}

这是我的 JS:

var table = $('#news-table').DataTable({
processing: true,
serverSide: true,
ajax: '{!! route('news.data') !!}',
columns: [
{
"className": 'details-control',
"orderable": false,
"data": null,
"defaultContent": ''
},
{data: 'id', name: 'news.id'},
{data: 'judul', name: 'news.judul'},
{data: 'name', name: 'users.name'},
{data: 'action', name: 'action', orderable: false, searchable: false}
],
order: [[1, 'asc']]
});

//problem starts here
$('#news-table').DataTable().$('.btn-delete[data-remote]').on('click', function (e) {
e.preventDefault();
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
var url = $(this).data('remote');
// confirm then
$.ajax({
url: url,
type: 'DELETE',
dataType: 'json',
data: {method: '_DELETE', submit: true}
}).always(function (data) {
$('#news-table').DataTable().draw(false);
});
});

btn-delete[data-remote] 的 JS 事件不工作,它在控制台中没有返回错误,但是当我点击它时没有任何反应

最佳答案

它可能不起作用,因为当您将点击事件绑定(bind)到表格时,其中没有任何元素。因此不可能在名为 .btn-delete[data-remote] 的元素上绑定(bind)点击事件。

如果你在表格上绑定(bind)点击事件并让它在点击 .btn-delete[data-remote] 时触发,也许它会起作用,比如:

$('#news-table').on('click', '.btn-delete[data-remote]', function (e) { 
e.preventDefault();
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
var url = $(this).data('remote');
// confirm then
$.ajax({
url: url,
type: 'DELETE',
dataType: 'json',
data: {method: '_DELETE', submit: true}
}).always(function (data) {
$('#news-table').DataTable().draw(false);
});
});

// or maybe this
$('#news-table').DataTable().on('click', '.btn-delete[data-remote]', function (e) {
......
});

关于javascript - Laravel yajra/Datatables 操作删除不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34370240/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com