我按照教程点燃数据表https://github.com/IgnitedDatatables/Ignited-Datatables/wiki/Function-Reference
function datatables() {
$this->datatables
->select('TerminalID,AtmLocation,MaxNumOfBills1,MaxNumOfBills2')
->from('terminalset');
header('Content-Type: application/json');
echo $this->datatables->generate();
}
当我使用这样的存储过程时遇到麻烦:
$this->db->query('proc_request "$parameter"');
如何在点燃的数据表中调用存储过程?
如何在库 datatables.php 中添加查询功能?https://github.com/IgnitedDatatables/Ignited-Datatables/blob/master/application/libraries/Datatables.php