Laravel Datatables导出按钮不起作用

时间:2018-03-07 14:19:46

标签: php laravel datatables

我正在做一个Laravel项目。我正在使用数据表。我使用以下代码导出csv,excel和pdf中的表,但它不起作用。

public function html ()
{
    return $this->builder ()
        ->columns ($this->getColumns ())
        ->addAction (['width' => '10%'])
        ->ajax ('')
        ->parameters ([
            'dom' => 'Bfrtip' ,
            'scrollX' => true ,
            'buttons' => [
                [
                    'extend' => 'collection' ,
                    'text' => '<i class="fa fa-download"></i> Export' ,
                    'buttons' => [
                        'csv' ,
                        'excel' ,
                        'pdf' ,
                    ] ,
                ] ,
                'colvis'
            ]
        ]);
}

0 个答案:

没有答案