基本上我想上傳一個圖像並將其顯示給用戶,在圖像被選中的時刻,什麼也沒有發生,我得到了沒有錯誤的錯誤或其他任何東西,我想知道發生了什麼。Laravel 5上傳和顯示圖像
這裏是我的代碼:
<form action="{{ action('[email protected]') }}" role="form" method="POST">
<input class="form-control filestyle margin images" data-input="false" type="file" data-buttonText="Upload Logo" data-size="sm" data-badge="false" />
</form>
<div class="logo">
<img class="images" id="image" src="#" alt="Your Logo"/>
</div>
控制器:
public function testing() {
if(Input::file())
{
$image = Input::file('photo');
$filename = time() . '.' . $image->getClientOriginalExtension();
$path = public_path('images/' . $filename);
Image::make($image->getRealPath())->resize(200, 200)->save($path);
$user->image = $filename;
$user->save();
}
}
試試這個插件https://blueimp.github.io/jQuery-File-Upload/非常好的,簡單 –
需要它更高大小 – Przemek