浏览代码

excel导出测试

曹鹤洋 1 年之前
父节点
当前提交
59ed952c41
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      application/api/controller/PackagingCountDocument.php

+ 6 - 0
application/api/controller/PackagingCountDocument.php

@@ -656,9 +656,15 @@ class PackagingCountDocument extends Api
             }
         }
         $writer = new Xlsx($spreadsheet);
+// 将 Excel 文件转换为二进制数据
+        $excelData = $writer->writeToString();
+
+// 返回 Excel 数据给前端
+        $this->success('成功', $excelData);
 
         header('Content-Disposition: attachment;filename="'.$file_name.'.xlsx"');
         header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
+
         $writer->save("php://output"); //表示在$path路径下面生成demo.xlsx文件
 
     }