在 Laravel 8 中更新图像后如何从公共文件夹中删除图像
Posted
技术标签:
【中文标题】在 Laravel 8 中更新图像后如何从公共文件夹中删除图像【英文标题】:How to Delete Images from a folder in Public after update of the image in Laravel 8 【发布时间】:2022-01-15 18:03:21 【问题描述】:我尝试更新包含文件(图像)的表单并删除旧图像。更新工作正常,但旧图像无法删除。我试过这段代码,但图像没有被删除。请帮我。提前致谢。
public function update(Request $request, $id)
$slug = SlugService::createSlug(Category::class, 'slug', $request->title);
$request->validate([
'title'=>'required',
'category_image'=>'image'
]);
if ($request->hasFile('category_image'))
$image = $request->file('category_image');
$newImageName = uniqid().'-'.$request->title.'.'.$image->getClientOriginalExtension();
$location = public_path('/categoryImage');
$OldImage = public_path('categoryImage/'.$request->category_image);
$image->move($location, $newImageName);
Storage::delete($OldImage);
else
$newImageName = $request->category_image;
Category::where('id', $id)->update([
'slug'=>$slug,
'title'=>$request->input('title'),
'details'=>$request->input('details'),
'category_image'=>$newImageName
]);
return redirect('category')->with('success', 'Category Successfully Updated');
【问题讨论】:
当我在 if 语句中使用 dd('$request->category_image') 时不会产生图像的名称,而在 else 语句中使用时会显示图像名称。我无法弄清楚我做错了什么。 【参考方案1】:您可以像这样删除旧图像,如果图像不在存储的根目录中,请在图像名称之前插入您的文件位置。
unlink(storage_path('/location_inside_storage/'.$OldImage));
【讨论】:
谢谢,但没用。当我在 if 语句中使用 dd('$request->category_image') 时,不会产生图像的名称,而在 else 语句中使用时会显示图像名称。我无法弄清楚我做错了什么。【参考方案2】:public function update(Request $request, $id)
...
$category = Category::find($id); #new
if ($request->hasFile('category_image'))
$image = $request->file('category_image');
$newImageName = uniqid().'-'.$request->title.'.'.$image->getClientOriginalExtension();
$location = public_path('/categoryImage');
$OldImage = public_path('categoryImage/'.$category->category_image); #new
$image->move($location, $newImageName);
unlink($OldImage); #new
else
$newImageName = $request->category_image;
#you can simplify this as
$category->slug = $slug;
$category->title = $request->title;
$category->details = $request->details;
$category->category_image = $newImageName;
$category->save()
return redirect('category')->with('success', 'Category Successfully Updated');
【讨论】:
正如目前所写,您的答案尚不清楚。请edit 添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。你可以找到更多关于如何写好答案的信息in the help center。以上是关于在 Laravel 8 中更新图像后如何从公共文件夹中删除图像的主要内容,如果未能解决你的问题,请参考以下文章
当尚未在编辑表单中选择图像时,如何默认使用当前图像更新帖子。我正在使用 laravel 8
Laravel 8,为公共文件夹中的所有图像创建 zip 文件。面对文件错误:ZipArchive::addFile(): Invalid or uninitialized Zip object