image
1 <form action="{{ url('/image-change-title')}}" method="post" onsubmit="return check(this)"> 2 {{ csrf_field() }} 3 <label >新しいタイトル<input type="text" name="new_title"></label> 4 <input type="submit" value="変更" name="alert_check"> 5 <input type="hidden" name="img_id" value="{{ $img->id }}"> 6 <input type="hidden" name="path" value="{{ $img->path }}"> 7 </form>
web.php
1Route::post('/image-change-title', 'ImageController@image_change_title'); 2
imageController.php
1<?php 2 3namespace App\Http\Controllers; 4use Auth; 5use App\Http\Controllers\UserController; 6use Illuminate\Http\Request; 7use App\Image; 8use App\User; 9use Illuminate\Support\Facades\DB; 10class ImageController extends Controller 11{ 12 13public function image_edit(Request $request){ 14 $path = $request->path; 15 16 $image = DB::table('images')->where('path', $path)->first(); 17 // $image = Image::where('path', $path)->get(); 18 19 return view('/image-edit' , ['img' => $image]); 20 21 22} 23 24 25 26 27public function image_change_title(Request $request){ 28 29$img_id = $request->img_id; 30$new_title = $request->new_title; 31$image = \App\Image::findOrFail($img_id); 32 33$image->title = $new_title; 34$image->save(); 35 36// $controller = new UserController; 37// // $controller->get_user_info(); 38 39$this->image_edit($request); 40 41 42// return view('/user-info' , ['change_title_result' => 'タイトル変更しました']); 43 44} 45 46}
image_change_titleメソッド内で$this->image_edit()を呼び出して、
return view('/image-edit' , ['img' => $image]); なので
image-edit.blade.phpに飛ばしたいのですが、
image_change_title()メソッドを呼び出しても、
form で飛ばした時の /image-change-title に飛んでしまいます。
image_change_title メソッドは、タイトルの更新を行っているのですが、更新はうまくいっています。
なので、 image_change_title の $image->save();
までは、思った通りに実行できていると思います。
$this->image_edit($request);
も呼び出し事態はうまくいっています。
飛び先が上手くいかないのが原因がなかなか解決できなかったので、アドバイスいただけると幸いです。
Laravel Framework 7.10.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/23 17:47