소스 검색

修复表格导出字段中存在空数组时导出异常问题

jqh 4 년 전
부모
커밋
af41187c0b
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      src/Grid/Exporters/AbstractExporter.php

+ 6 - 0
src/Grid/Exporters/AbstractExporter.php

@@ -230,6 +230,12 @@ abstract class AbstractExporter implements ExporterInterface
     {
         foreach ($data as &$row) {
             $row = Arr::dot($row);
+
+            foreach ($row as &$v) {
+                if (is_array($v) || is_object($v)) {
+                    $v = json_encode($v, JSON_UNESCAPED_UNICODE);
+                }
+            }
         }
 
         return $data;