前提・実現したいこと
意図通りにデータベースへ入力内容が反映されない。
発生している問題・エラーメッセージ
データベースの様子
formで投稿する際、proofカラムに「1」を挿入したいが、
NULLになってしまいます。
proof以外の値は反映されるため、
おそらく、formで送った$requestに対して、
proofのデータだけが送られていないと推測されます。
該当のソースコード
content.blade.php
laravel
1@extends('layouts.top') 2@section('title', 'なんでも先生') 3@section('content') 4 5 6 〜省略〜 7 8 @if($proof==1) 9 <form method="POST" action="{{ action('Student\StudentController@store2') }}"> 10 @csrf 11 <input name="proof" type="hidden" value="1"> 12 @else 13 <form method="POST" action="{{ action('Student\StudentController@store') }}"> 14 @csrf 15 @endif 16 17 18 19 <input name="question_id" type="hidden" value="{{ $question->id }}"> 20 <input name="name" type="hidden" value="{{ $teacher->name }}"> 21 <div> 22 <hr> 23 <label for="body">本文</label> 24 <textarea name="body" rows="4">{{ old('body') }}</textarea> 25 @if ($errors->has('body')) 26 <div> 27 {{ $errors->first('body') }} 28 </div> 29 @endif 30 </div> 31 <div> 32 <button type="submit" class="btn btn-primary"> 33 コメントする 34 </button> 35 </div> 36 </form> 37@endsection
コントローラー
laravel
1 2<?php 3 4namespace App\Http\Controllers\Student; 5 6use App\Http\Controllers\Controller; 7use Illuminate\Http\Request; 8 9use App\User; 10use App\Question; 11use App\Comment; 12 13 14class StudentController extends Controller 15{ 16 〜省略〜 17 18 public function store2(Request $request) 19 { 20 $params = $request->validate([ 21 'question_id' => 'required|exists:questions,id', 22 'body' => 'required|max:2000', 23 'proof' => 'required', 24 ]); 25 26 $question = Question::findOrFail($params['question_id']); 27 $question->comments()->create($params); 28 29 $name = $request->name; 30 $teacher=User::where('name', $name)->first(); 31 32 return view('student.content',['teacher'=>$teacher,'question'=>$question,'proof'=>1]); 33 } 34} 35 36
試したこと
データベースの設定で、proofのデフォルト値をNULLからなしにすると、
下記のエラーができます。
エラー画面
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。