我已经创建了导出Excel的功能,该代码可以在另一个模块中工作
$filename='tajima_sparepart_'.date('Y-m-d_H-i').'.xlsx';
ob_end_clean();
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="'.$filename.'"');
header('Cache-Control: max-age=0');
$objWriter = IOFactory::createWriter($this->excel, 'Excel2007');
$objWriter->save('php://output');
但是当导出时,显示给我:
输出可能暂时关闭,或者可能已永久移至新的网址。
有人有解决方案吗?
答案 0 :(得分:0)
我忘了加载IOFactory类
$this->load->library('PHPExcel/IOFactory.php');