php-Laravel文件上传:从服务器访问文件
作者:互联网
我已经使用Laravel 5.0成功将图像文件上传到服务器.这是我的表格:
<html>
<head>
<title>Uploads</title>
</head>
<body>
{!! Form::open(array('url' => 'uploadProcessing' , 'enctype' => 'multipart/form-data')) !!}
{!! Form::label('image','Upload Image') !!}
{!! Form::file('image') !!}
{!! Form::submit('Submit') !!}
{!! Form::close() !!}
</body>
</html>
这是我的控制器:
public function uploadProcessing() {
$image = Input::file('image');
$imageName = rand(1111, 9999) . '.' . Input::file('image')->getClientOriginalExtension();
Input::file('image')->move(base_path() . '/public/uploads/', $imageName);
}
与此同时,我将$imageName保存为数据库表中的一个引用.
现在,我必须在具有该参考的视图中显示该图像.我试图以这种方式访问它:
@foreach($result as $r)
{!! HTML::image('uploads/$r->reference') !!}
@endforeach
但这不起作用,有什么帮助吗?
解决方法:
我明白了,这很简单,我尝试过这样:
<img src="..\uploads\{!! $r->reference !!}" />
而且有效
标签:laravel-5,file-upload,php 来源: https://codeday.me/bug/20191120/2040629.html