什麼是我的圖片存儲到數據庫中正確的方式如何存儲不帶路徑的形象的名字 - laravel
我應該存儲圖像的填充路徑,像這樣images/pagesImages/image.jpg
或正確的做法是隻存儲圖像名稱並寫入圖像應該出現的路徑?
我是新來的Laravel,當我更新我發現的完整路徑被存儲在數據庫
我只能存儲映像名稱不帶路徑上的圖像,我在頁面上更新的形象?
這裏是我的控制器
public function editAboutImage()
{
$id = 1;
$image = Text_area::find($id);
$validation = Validator::make(Input::all(), [
'image' => 'sometimes|image|mimes:jpeg,png|min:1|max:250'
]);
if ($validation->fails()) {
return Redirect::to('edit-about')->with('errors', $validation->errors());
}
if (Input::hasFile('image')) {
$file = Input::file('image');
$destination_path = 'images/pagesImages/';
$filename = str_random(6) . '_' . $file->getClientOriginalName();
$file->move($destination_path, $filename);
$image->image = $destination_path . $filename;
$image->save();
}
return Redirect::to('edit-about')->with('message', 'You just updated an image!');
}
澄清我的兩個問題
- 這是更好的方式來存儲圖像我應該把它存儲與路徑或只是圖像名稱。
- 如果我只需要存儲圖像名稱而沒有路徑,我應該如何處理我的控制器。
千恩萬謝
只是形象的名字會更好。 –
我個人只是保存圖像的名稱。除非你在各種目錄上有圖像,否則我想不出保存整個路徑的好處。我不明白第二個問題。 – cjmling
@Sanzeeb Aryal謝謝我以爲相同,你可以幫助編輯上面的控制器來存儲圖像名稱 –