Browse Source

修复无数据时导出报错问题

jqh 4 năm trước cách đây
mục cha
commit
e8dca25067
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/Grid/Exporters/ExcelExporter.php

+ 1 - 1
src/Grid/Exporters/ExcelExporter.php

@@ -30,7 +30,7 @@ class ExcelExporter extends AbstractExporter
                 return $this->buildData($times);
             });
         } else {
-            $exporter->data($this->buildData());
+            $exporter->data($this->buildData() ?: [[]]);
         }
 
         $exporter->headings($this->titles)->download($filename);