前提・実現したいこと
phpフレームワークLaravel入門第2 のSQLのところの
insertをしてhttp://localhost:8000/hello/addにアクセスしても
画面が表示されません(404エラー)
発生している問題・エラーメッセージ
エラーメッセージ 404 NOT FOUND
該当のソースコード
HelloController
1<?php 2 3namespace App\Http\Controllers; 4 5use Illuminate\Http\Request; 6use Illuminate\Http\Response; 7use App\Http\Requests\HelloRequest; 8use Validator; 9use Illuminate\Support\Facades\DB; 10 11 12class HelloController extends Controller 13{ 14 public function index(Request $request) 15 { 16 $items = DB::select('select * from people'); 17 return view('hello.index', ['items' => $items]); 18 } 19 20 public function post(Request $request) 21 { 22 $items = DB::select('select * from people'); 23 return view('hello.index', ['items' => $items]); 24 } 25 26 public function add(Request $request) 27 { 28 return view('hello.add'); 29 } 30 31 public function create(Request $request) 32 { 33 $param = [ 34 'name' => $request->name, 35 'mail' => $request->mail, 36 'age' => $request->age, 37 ]; 38 DB::insert('insert into people (name, mail, age) values (:name, :mail, :age)', $param); 39 return redirect('/hello'); 40 } 41 42} 43
add.blade.php
1add.blade.php 2 3@extends('layouts.helloapp') 4 5@section('title', 'Add') 6 7@section('menubar') 8 @parent 9 新規作成ページ 10@endsection 11 12@section('content') 13 <form action="/hello/add" method="post"> 14 <table> 15 @csrf 16 <tr><th>name: </th><td><input type="text" name="name"></td></tr> 17 <tr><th>mail: </th><td><input type="text" name="mail"></td></tr> 18 <tr><th>age: </th><td><input type="text" name="age"></td></tr> 19 <tr><th></th><td><input type="submit" value="send"></td></tr> 20 </table> 21 </form> 22@endsection 23 24@section('footer') 25copyright 2020 tuyano. 26@endsection 27 28 29 30@endsection 31 32 33
index.blade.php
1index.blade.php 2 3 4@extends('layouts.helloapp') 5 6@section('title','Index') 7 8@section('menubar') 9@parent 10インデックスページ 11@endsection 12 13@section('content') 14 <table> 15 <tr><th>Name</th><th>Mail</th><th>Age</th></tr> 16 @foreach ($items as $item) 17 <tr> 18 <td>{{$item->name}}</td> 19 <td>{{$item->mail}}</td> 20 <td>{{$item->age}}</td> 21 </tr> 22 @endforeach 23 </table> 24 </form> 25@endsection 26 27@section('footer') 28 copyright 2020 tuyano. 29@endsection 30
web.php
1web.php 2 3 4<?php 5use Illuminate\Support\Facades\Route; 6use App\Http\Controllers\PostController; 7use App\Http\Controllers\Recuest; 8use App\Http\Middleware\HelloMiddleware; 9Route::get('hello', 'App\Http\Controllers\HelloController@index'); 10Route::post('hello', 'App\Http\Controllers\HelloController@post'); 11Route::get('person', 'App\Http\Controllers\PersonController@index'); 12Route::get('hello/add', 'App\Http\Controllers\HelloController@add'); 13Route::post('hello/add', 'App\Http\Controllers\HelloController@create'); 14
試したこと
web.phpが誤っているのではないかと思ったのですが自分が見たかぎり
問題なさそうでした・・新しくページを開き直したりもしましたがダメでした。
初心者で質問の仕方が下手で申し訳ありませんが、
どなたかご回答いただけたら幸いです。よろしくお願い致します。
hello/add.blade.php
はどこでしょう。
大変失礼いたしました。
index.blade.phpは書き間違えでした。add.blade.phpに記載しなおしております。
よろしくお願い致します。
念の為、キャッシュクリアを行ってください。
コメントありがとうございます。キャッシュを先ほど行ってみましたが、変わりなく404エラーのままでした。。
ん?addなのに「インデックスページ」「'title','Index'」?
どういう構成になってるんですか?
昨日に引き続きコメントありがとうございます。
大変申し訳ありませんでした。add.blade.phpの情報を直し、index.blade.phpも
加えておきました。よろしくお願い致します。
helloディレクトリを作成していないなんてことはないですね?
resources > views > hello > add.blade.php
で作成しています。
1. http://localhost:8000/helloに、insert関係なく直接アクセスするとどうなるか
2. insert後の404時のURLはどうなっているか
3. web.phpを書き換えた後はphp artisan optimize を実行しているか
以上確認お願いします。
jammer様
3. web.phpを書き換えた後はphp artisan optimize を実行を
していませんでした・・!参考書には記載がなく、私の知識不足と検索能力が足りませんでした。無事解決できました。本当に助かりました。ありがとうございます・・!
もしよろしければベストアンサーにしたいので、お手数ではございますが、回答の方にコメントをお願いします。面倒であれば自分で自己解決の部分に記入し、解決済みにします。よろしくお願い致します。本当にありがとうございました!!
つまりキャッシュではw
yes, routeのおキャッシュですよw
optimizeじゃなくても、
php artisan route:cache
でも良いです。とにかくルーティングをいじったらrouteのキャッシュをクリアしましょう。
自己解決フィニッシュで大丈夫ですよ。
回答1件
あなたの回答
tips
プレビュー