前提・実現したいこと
phplaravelの勉強中です。
PHPフレームワーク Laravel入門という本を購入して勉強してます。144ページのところでエラーです。
フォームにバリデーションに引っかかる不適切な情報を入力した場合に、バリデーションの情報を保持しつつindex.blade.phpにページが自動で飛ぶようにしたいです。(エラーメッセージを表示した状態のindex.blade.phpが表示されるようにしたい。)
発生している問題・エラーメッセージ
フォームに、不適切な情報を記入してフォームの送信ボタンを押すと、
「このサイトにアクセスできません localhost で接続が拒否されました。」という画面になってしまいます。
該当のソースコード
HelloController.php
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Http\Response; use App\Http\Requests\HelloRequest; use Validator; class HelloController extends Controller { public function index(Request $request) { return view('hello.index', ['msg'=>'フォーム入力:']); } public function post(Request $request) { $validator = Validator::make($request->all(),[ 'name' => 'required', 'mail' => 'email', 'age' => 'numeric|between:0,150', ]); if($validator->fails()) { return redirect('/hello') ->withErrors($validator) ->withInput(); } return view('hello.index', ['msg'=>'正しく入力された']); } }
Hellorequests.php
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class HelloRequest extends FormRequest { public function authorize() { if ($this->path() == 'hello') { return true; } else { return false; } } public function rules() { return [ 'name' => 'required', 'mail' => 'email', 'age' => 'numeric|between:0,150', ]; } public function messages() { return [ 'name.required' => '名前は必ず入力して下さい。', 'mail.email' => 'メールアドレスが必要です。', 'age.numeric' => '年齢を整数で記入下さい。', 'age.between' => '年齢は0 ~ 150の間で入力下さい。', 'age.hello' => 'Hello! 入力は偶数のみ受け付けます。', ]; } }
index.blade.php
@extends('layouts.helloapp') @section('title', 'Index') @section('menubar') @parent インデックスページ @endsection @section('content') <p>{{$msg}}</p> @if (count($errors) > 0) <p>入力に問題があります</p> @endif <form action="/hello" method="post"> <table> @csrf @error('name') <tr><th>ERROR</th><td>{{$message}}</td></tr> @enderror <tr><th>name: </th><td><input type="text" name="name" value="{{old('name')}}"></td></tr> @error('mail') <tr><th>ERROR</th><td>{{$message}}</td></tr> @enderror <tr><th>mail: </th><td><input type="text" name="mail" value="{{old('mail')}}"></td></tr> @error('age')) <tr><th>ERROR</th><td>{{$message}}</td></tr> @enderror <tr><th>age: </th><td><input type="text" name="age" value="{{old('age')}}"></td></tr> <tr><th></th><td><input type="submit" value="send"></td></tr> </table> </form> @endsection @section('footer') copyright 2020 tuyano. @endsection
web.php
<?php use Illuminate\Support\Facades\Route; use App\Http\Middleware\HelloMiddleware; Route::get('/', function () { return view('welcome'); }); Route::get('hello','App\Http\Controllers\HelloController@index'); Route::post('hello','App\Http\Controllers\HelloController@post');
環境
MAMPを使っています。
apache server
MySQL server
共に正常に起動していることを確認しました。
なお、バリデーションに引っかからないように入力してフォーム送信すると問題なくページは表示されます。
わざとバリデーションに引っかかるように入力すると上記エラーとなり、ページを表示できません。
なので、return view は問題なく機能していますが、return redirect がうまく動作していないかと思っています。
PHP 7.4.1
MySQL 5.7
PHP laravel 8.7.1
試したこと
インターネット接続については、問題なくできていることは確認しました。
今回問題なっているページだけ開ません。
回答2件
あなたの回答
tips
プレビュー