|
@@ -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);
|
|
|
+
|
|
|
|
|
|
|
|
|
}
|