1.了解文件磁盤(pán)配置:
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
在filesystems.php文件中創(chuàng)建了一個(gè)名為 public的文件磁盤(pán),使用的驅(qū)動(dòng)為本地存儲(chǔ),'root'表示的是文件最終存儲(chǔ)的目標(biāo)路徑是storage/app/public, ‘url' 表示的是文件的url,'visibility'表示的是可見(jiàn)性
2.創(chuàng)建軟連接,在項(xiàng)目的根目錄運(yùn)行如下命令:
如果是線上代碼,則需要在服務(wù)器中的項(xiàng)目根目錄運(yùn)行。
軟連接的創(chuàng)建意味著項(xiàng)目的 …/public/storage/ 路徑直接指向了 …/storage/app/public/ 目錄
3.接收?qǐng)D片并存儲(chǔ),返回存儲(chǔ)的圖片的url
class UploadController extends Controller
{
public function upload()
{
$imgs = [];
if (request()->hasFile('file')){
foreach (request()->file('file') as $file){
//將圖片存儲(chǔ)到了 ../storage/app/public/product/ 路徑下
$path = $file->store('public/product');
$path = str_replace('public','',$path);
$imgs[]= asset('storage/'.$path);
}
return response()->json([
'errno'=>0,
'data'=>$imgs
]);
}else{
return response()->json([
'info'=>'沒(méi)有圖片'
]);
}
//處理多圖上傳并返回?cái)?shù)組
}
}
以上這篇laravel 多圖上傳及圖片的存儲(chǔ)例子就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
您可能感興趣的文章:- Laravel+Layer實(shí)現(xiàn)圖片上傳功能(整理篇)
- PHP Laravel 上傳圖片、文件等類封裝
- laravel實(shí)現(xiàn)一個(gè)上傳圖片的接口,并建立軟鏈接,訪問(wèn)圖片的方法
- laravel 實(shí)現(xiàn)上傳圖片到本地和前臺(tái)訪問(wèn)示例
- laravel實(shí)現(xiàn)上傳圖片的兩種方式小結(jié)
- Laravel框架實(shí)現(xiàn)的上傳圖片到七牛功能詳解
- laravel實(shí)現(xiàn)上傳圖片并在頁(yè)面顯示的例子
- laravel實(shí)現(xiàn)圖片上傳預(yù)覽,及編輯時(shí)可更換圖片,并實(shí)時(shí)變化的例子
- laravel實(shí)現(xiàn)上傳圖片,并且制作縮略圖,按照日期存放的代碼
- laravel框架上傳圖片實(shí)現(xiàn)實(shí)時(shí)預(yù)覽功能
- laravel5.5框架的上傳圖片功能實(shí)例分析【僅傳到服務(wù)器端】