Inertia.jsでフォーム送信を行い、処理が成功した後に以下のようなモーダルポップが表示されます。
モーダルの中にはコントローラー側で返されたJSONが記述されています。
モーダルの表示を防ぐ方法はありますか?
Laravel Breezeを備えたLaravel8を使用しています。
submit()でフォーム送信
Javascript
1 import NavBar from '@/Components/NavBar'; 2 import SelectBox from '@/Components/SelectBox'; 3 import BreezeInput from '@/Components/Input'; 4 import BreezeLabel from '@/Components/Label' 5 import BreezeButton from '@/Components/Button'; 6 import BreezeValidationErrors from '@/Components/ValidationErrors' 7 8 export default { 9 props: { 10 auth : Object, 11 status : Number, 12 message : String, 13 errors: Object, 14 }, 15 16 data() { 17 return { 18 19 category : { 20 1 : '質問・意見', 21 2 : '記事の修正依頼', 22 3 : 'バグ報告', 23 4 : 'その他' 24 }, 25 26 form : this.$inertia.form({ 27 mailAddress : '', 28 category : 1, 29 body : '' 30 }), 31 } 32 }, 33 34 components : { 35 NavBar, 36 SelectBox, 37 BreezeInput, 38 BreezeButton, 39 BreezeLabel, 40 BreezeValidationErrors 41 }, 42 43 methods : { 44 45 submit () { 46 this.form.post(this.route('contact.post')); 47 }, 48 }, 49 50 }
post()で処理
PHP
1<?php 2 3namespace App\Http\Controllers; 4 5use Illuminate\Http\Request; 6use Illuminate\Support\Facades\DB; 7use Illuminate\Support\Facades\Notification; 8use Illuminate\Support\Facades\Redirect; 9use App\Models\User; 10use Inertia\Inertia; 11use DateTime; 12 13use App\Notifications\Contact\Mail; 14use App\Http\Requests\Contact\PostRequest; 15 16class ContactController extends Controller 17{ 18 /** 19 * ホーム画面表示 20 * 21 * @return \Illuminate\View\View 22 */ 23 public function show () 24 { 25 return Inertia::render('Contact'); 26 } 27 28 /** 29 * 投稿処理 30 * 31 * @param App\Http\Requests\Contact\PostRequest $request 32 * @return \Illuminate\Http\Response 33 */ 34 public function post (PostRequest $request) 35 { 36 37 Notification::send(User::find(1), new Mail()); 38 39 DB::table('contacts')->insert([ 40 'category' => $request->input('category'), 41 'mail_address' => $request->input('mailAddress'), 42 'body' => $request->input('body'), 43 'created_at' => new DateTime() 44 ]); 45 46 return [ 47 'message' => 'success', 48 'code' => 200 49 ]; 50 51 } 52} 53
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/07/09 08:05
2022/01/18 19:50