Linux環境下,多圖片上傳提示沒有這樣的檔案或目錄解決方式
阿新 • • 發佈:2018-12-21
//列表縮圖 $title_file = $request->file("title_pic"); $product_file = $request->file("productpic"); //當move移動檔案後,Linux環境下預設清空臨時檔案,所以可以先獲取到檔案後再單獨去處理 if($title_file){ $title_pic = Gofile::file($title_file); if(!$title_pic){ return json(["code"=>401,"msg"=>"列表縮圖上傳失敗"]); } $data["title_pic"] = $title_pic; } //暫時上傳單圖 (後面換成多圖上傳) if($product_file){ //處理圖片 $product_pic = Gofile::file($product_file); if(!$product_pic){ return json(["code"=>401,"msg"=>"內容大圖上傳失敗"]); } $data["productpic"] = $product_pic; }