##laravel青本にてエラーを踏んでしまい原因が分かりません。
内容:
青本72ページ [図3−10] にて
名前を入力する画面から送信すると以下のエラーを踏んでしまいます。
解決方法を教えて下さい。
やったこと:
google翻訳でPOSTメソッドがサポートされていないことを理解した。
以下エラー内容画像とソースコードを添付致します。
index.blade.php
index.blade.php
1<html> 2 3<head> 4 <title>Hello/Index</title> 5 <style> 6 body { 7 font-size: 16pt; 8 color: #999; 9 } 10 11 h1 { 12 font-size: 50pt; 13 text-align: right; 14 color: #f6f6f6; 15 margin: -20px 0px -30px 0px; 16 letter-spacing: -4pt; 17 } 18 </style> 19</head> 20 21<body> 22 <h1>Blade/Index</h1> 23 <p>{{$msg}}</p> 24 <form method="POST" action="/hello"> 25 {{ csrf_field() }} 26 <input type="text" name="msg"> 27 <input type="submit"> 28 </form> 29</body> 30 31</html>
web.php
web.php
1<?php 2 3/* 4|-------------------------------------------------------------------------- 5| Web Routes 6|-------------------------------------------------------------------------- 7| 8| Here is where you can register web routes for your application. These 9| routes are loaded by the RouteServiceProvider within a group which 10| contains the "web" middleware group. Now create something great! 11| 12*/ 13 14Route::get('/', function () { 15 return view('welcome'); 16}); 17 18Route::get('hello', 'HelloController@index'); 19
HelloController.php
HelloController.php
1<?php 2 3namespace App\Http\Controllers; 4 5use Illuminate\Http\Request; 6use Illuminate\Http\Response; 7 8 9 10class HelloController extends Controller 11{ 12 public function index() 13 { 14 $data = [ 15 'msg' => '名前を入力してください。', 16 ]; 17 return view('hello.index', $data); 18 } 19 20 public function post(Request $request) 21 { 22 $msg = $request->msg; 23 $data = [ 24 'msg' => 'こんちは、' . $msg . 'さん!', 25 ]; 26 return view('hello.index', $data); 27 } 28} 29
回答1件
あなたの回答
tips
プレビュー