今天小编就为大家分享一篇laravel实现上传图片并在页面显示的例子,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
1:上传图片
public function updateFeedbackImg(Request $request) { $bool = false; $upload_file = $request->file("pic"); if ($upload_file->isValid()) { $realPath = $upload_file->getRealPath(); $bool = Storage::disk('feedback')->put($request->get('id') . '.png-600', file_get_contents($realPath)); } if ($bool == true) { $company = CompanyState::find($request->get('id')); $company->picpath_ = $request->get('id') . '.png-600'; $company->save(); return '{"statusCode":"200", "message":"上传成功", "navTabId":"uploadFeedbackImg", "forwardUrl":"evaluation/queryCompanyFeedback/' . session('plan_id') . '", "callbackType":"forward"}'; } else { return '{"statusCode":"300", "message":"上传失败","callbackType":"closeCurrent"}'; } }
2:html
3:设置对应的路由
Route::group(['prefix' => 'evaluation'], function () { //查看图片 Route::get('/lookthrough/{company_id}', 'EvaluationController@lookthrough'); //放大图片 Route::get('/showImage/{src}', 'EvaluationCon<div style="color:transparent">来源gaodai.ma#com搞#代!码网</div>troller@showImage'); });
4:显示图片
public function lookthrough($company_id) { $company = CompanyState::getRecordById($company_id); return view('panels.EvaluationManagement.FeedbackInfo.FeedbackImg', ['company' => $company[0]]); } public function showImage($src) { $path = storage_path() . '/feedback/' . $src; //获取图片位置的方法 return response()->file($path); }
以上就是laravel实现上传图片并在页面显示的例子的详细内容,更多请关注gaodaima搞代码网其它相关文章!