我已使用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
但它没有用,有什么帮助吗?
答案 0 :(得分:3)
我明白了,很简单,我试过了:
<img src="..\uploads\{!! $r->reference !!}" />
它有效