使用Laravel 5.4,我要设置一个表单,用户可以在其中输入食物名称及其图像。在尝试上传PNG或JPG图片时,我收到以下Validation Error
:
图像必须是图像。
如果我删除了图片验证,我会收到FatalErrorException
:
在null
上调用成员函数getClientOriginalExtension()
这是Intervention / Image库提供的辅助函数。这可能意味着图像根本没有上传。
FORM
<form action="/hq/foods" method="POST">
{{ csrf_field() }}
<input type="text" name="name">
<input type="file" name="image">
<button type="submit" class="btn btn-success ">
ADD FOOD ITEM
</button>
</form>
CONTROLLER
public function store(Request $request) {
$this->validate($request, [
'name' => 'required|min:2|max:255',
'image' => 'required|image'
]);
$food_category = FoodCategory::find($request->food_category_id);
$food = new Food;
$food->name = $request->name;
$image = $request->file('image');
$filename = time() . '.' . $image->getClientOriginalExtension();
$location = public_path('img/foods/' . $filename);
Image::make($image)->resize(800, 400)->save($location);
$food->image = $filename;
$food->save();
Session::flash('success',
'
<h4>Success!</h4>
<p>The food item has been added to the Menu.</p>
');
return back();
}
我错过了什么?
答案 0 :(得分:4)
要上传您需要添加的图片:
enctype="multipart/form-data"
到您的表单而不是:
<form action="/hq/foods" method="POST">
你应该使用
<form action="/hq/foods" method="POST" enctype="multipart/form-data">
答案 1 :(得分:0)
如果您使用Laravelcollective
{!! Form::open(['method'=>'post','files' => true,'url'=>'/hq/foods']) !!}
OR 使用HTML
<form action="/hq/foods" method="POST" enctype="multipart/form-data">
答案 2 :(得分:0)
您需要在以下位置添加enctype =“ multipart / form-data”