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', file_get_contents($realPath));
}
if ($bool == true) {
$company = CompanyState::find($request->get('id'));
$company->picpath_ = $request->get('id') . '.png';
$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
img src="{{ url('evaluation/showImage/'.$company->picpath_) }}"
οnclick="this.width+=500;this.height+=500; javascript:window.open(this.src);"
style="cursor:pointer; width: 500px; height: 800px;border:1px solid #000000"
name="photopath"/>
3:设置对应的路由
Route::group(['prefix' => 'evaluation'], function () {
//查看图片
Route::get('/lookthrough/{company_id}', 'EvaluationController@lookthrough');
//放大图片
Route::get('/showImage/{src}', 'EvaluationController@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上传图片显示就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:- Laravel+Layer实现图片上传功能(整理篇)
- PHP Laravel 上传图片、文件等类封装
- laravel实现一个上传图片的接口,并建立软链接,访问图片的方法
- laravel 实现上传图片到本地和前台访问示例
- laravel实现上传图片的两种方式小结
- Laravel框架实现的上传图片到七牛功能详解
- laravel 多图上传及图片的存储例子
- laravel实现图片上传预览,及编辑时可更换图片,并实时变化的例子
- laravel实现上传图片,并且制作缩略图,按照日期存放的代码
- laravel框架上传图片实现实时预览功能
- laravel5.5框架的上传图片功能实例分析【仅传到服务器端】