現在Laravelの練習用アプリを作っています。
そこでAxiosによる通信でDBにデータをinsertする処理を書いているのですが500 (Internal Server Error)が発生して処理が正常に終了しません。
vue
1<template> 2 <div class="container"> 3 <div>クイズ内容</div> 4 <textarea name="question" id="text_box" cols="30" rows="10" v-model="text"></textarea> 5 <button v-on:click="addQuestion()">登録</button> 6 </div> 7 8</template> 9 10<script> 11import axios from 'axios' 12export default{ 13 data(){ 14 return { 15 text:'', 16 } 17 }, 18methods:{ 19 addQuestion(){ 20 axios.post('api/create',{ 21 question_text:this.text 22 }).then( 23 res=>{ 24 console.log(this.text); 25 } 26 ) 27 } 28 } 29}; 30 31</script>
route
1Route::group( 2 ['middleware' => 'api'], 3 function () { 4 Route::post('create', 'QuestionController@create'); 5 } 6); 7
controller
1 public function create(Request $request) 2 { 3 $questinos = new question; 4 $questinos->question_text = $request->question_text; 5 $questinos->save(); 6 return true; 7 }
そう複雑なことをしている訳でもないのでどこが悪いのか分かりません。
助言いただけたら嬉しです。
500 (Internal Server Error) なので「サーバ側でエラー」が起きています。
そちらのエラーログを追記してもらえますか。
あなたの回答
tips
プレビュー