我是Laravel的新手,所以我真的需要一些帮助。我想问什么时候 我评论了部分'photo'=>要求为什么如果我更新而不输入照片它会显示一些错误,如调用成员函数getClientOriginalName()为null。所以真正的问题是我想在不输入照片的情况下进行更新,它仍然需要更新。
这是我上传照片的控制器中的代码
public function update($id, UpdateBannerRequest $request)
{
$input = $request->all();
//get original file name
$filename = Input::file('photo')->getClientOriginalName();
$input['photo'] = $filename;
Input::file('photo')->move($this->path, $filename);
$banner = $this->BannerRepository->findWithoutFail($id);
if (empty($banner)) {
Flash::error('Banner not found');
return redirect(route('banner.index'));
}
$banner = $this->BannerRepository->update($input, $id);
Flash::success('Banner updated successfully.');
return redirect(route('banner.index'));
}
这是我模型上的代码
<?php
命名空间App \ Models;
使用Eloquent作为模型; 使用Illuminate \ Database \ Eloquent \ SoftDeletes;
类Banner扩展了Model { 使用SoftDeletes;
public $table = 'banners';
protected $dates = ['deleted_at'];
public $fillable = [
'title',
'description',
'photo',
'status'
];
protected $casts = [
'title' => 'string',
'description' => 'string',
'photo' => 'string',
'status' => 'integer'
];
public static $rules = [
'title' => 'required',
'description' => 'required',
//'photo' => 'required',
'status' => 'required'
];
}
答案 0 :(得分:1)
$validator = Validator::make(
$request->all(),
array(
'photo' => 'required',
),
array(
'photo' => 'Please choose file',
)
);
如果照片不是强制性的,请直接使用此
if(!empty($request->photo)){
//do something
}
else{
Flash::error('Banner not provided');
return redirect(route('banner.index'));
}
希望这会有所帮助..如果有任何问题,请告诉我。谢谢
您的更新功能看起来像
public function update($id, UpdateBannerRequest $request)
{
$input = $request->all();
$banner = $this->BannerRepository->findWithoutFail($id);
if(!empty($request->photo)){
//do something for saving the name of file in database and other value respectively using
// $filename = Input::file('photo')->getClientOriginalName();
// $banner->photo = $filename;
}
else{
Flash::error('Banner not provided');
return redirect(route('banner.index'));
}
$banner->save();
Flash::success('Banner updated successfully.');
return redirect(route('banner.index'));
}
答案 1 :(得分:0)
最简单的验证是测试是否Z
,这应该在您致电Input::hasFile('photo')
之前放置
Input::file('photo')->getClientOriginalName()
答案 2 :(得分:0)
您应该检查以下代码。
{{1}}
在使用它之前。