1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravelのフォーム利用【個人的なお勉強アウトプット】

Last updated at Posted at 2022-03-19

参考図書

Bladeテンプレートにフォームを用意

<form method="POST" action="/hello">
@csrf
<input type="text" name="msg">
<input type="submit">
</form>

CSRF対策

BladeディレクティブでCSRF対策ができる
CSRFとは、表示しているフォームとは別サーバーから悪意のあるプログラムをリクエストすること。
CSRF対策はブラウザ側とサーバー側でトークンを発行し、フォームから送信された時にそのトークンが一致しているかどうか確かめることで当該フォームからのリクエストかどうか確認している。

コントローラ側にアクションを用意する

class HelloController extends Controller{

public function index(){
$data = ['msg'=>'お名前を入力してください。'];
return view('hello.index', $data)
}

public function post(Request $request){
$msg = $request->msg;
return view('hello.index', $msg);
}

}

アクションの引数でRequestクラスをインスタンス化している。
当該インスタンスにはフォームからのPOST情報が含まれている
input nameでmsgとしたものも動的メソッドとして取り出すことが可能。

ルートでPOSTのアクションの設定

Route::post('hello', 'App\Http\Controllers\HelloController@post')

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?