王新凯 4 years ago
parent
commit
950885961d
1 changed files with 14 additions and 1 deletions
  1. 14 1
      app/admin/controller/Excel.php

+ 14 - 1
app/admin/controller/Excel.php

@@ -28,10 +28,23 @@ class Excel extends Controller
     {
 
         $file = request()->file('file');
+
+        try {
+            validate(['file'=>[
+                'fileSize' => 40 * 1024 * 1024,
+                'fileExt' => 'xls,xlsx',
+                'fileMime' => ['application/vnd.ms-excel', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet','application/octet-stream'],
+            ]])->check(['file' => $file]);
+
+            $filename = \think\facade\Filesystem::putFile( 'excel', $file);
+
+        } catch (\think\exception\ValidateException $e) {
+            echo $e->getMessage();
+        }
         if(empty($file)){
             $this->error('文件类型错误');
         }
-        $savename = \think\facade\Filesystem::disk('public')->putFile( 'excel', $file);
+
 
         
     }