将json传递到datatable

时间:2019-05-30 16:16:54

标签: arrays json laravel datatable

我创建了一个数组,将一些数据放在该数组上以传递到数据表 但数据不接受数据表。

$records[] = array();
$records= ['col1' => 'sample', 'col2' => 'sample2'];
$this->data['sample_data']=json_encode($records);
return view('blade', $this->data);

我尝试不使用j son_encode来直接传递数据,但是失败了。 我发布了代码,以便有人可以尝试帮助我解决此问题。 我的代码中缺少吗? 我的数据是手动添加的,因为在添加到数组之前,我的条件很复杂。

0 个答案:

没有答案