【发布时间】:2020-10-18 21:03:39
【问题描述】:
我想显示所有在 nuxtjs 中的图片,我使用了 storage (Laravel) 来保存文件
<img v-for="(row, index) in files" :src="'storage/' + row" :key="index" alt="" width="150px" height="150px" class="img-fluid">
链接如下
http://localhost:3000/storage/example.jpg
但没有显示
我之前测试过,你不认为问题可能来自控制器吗?
public function index()
{
$files = scandir(storage_path('app/public/'));
$allFile = array_diff($files, ['.', '..', '.gitignore']);
return response()->json($allFile, 200);
}
【问题讨论】:
标签: html laravel vue.js storage nuxt.js