ホームページ > 記事 > PHPフレームワーク > Laravelでプロンプトボックスをポップアップするために何を使用するか
laravel のポップアッププロンプトボックスは if 文で実装されています。実装方法は次のとおりです: 1. "return redirect('/admin/list');" を設定します。 2. "public function destroy" を使用します。 ($user_id, $ id){...}"; 3. 「if ($bool) {$success = new MessageBag([...])...}」メソッドを使用して、ポップアップ プロンプトを実装します。
このチュートリアルの動作環境: Windows 7 システム、Laravel バージョン 5.7、Dell G3 コンピューター。
laravelでプロンプトボックスをポップアップさせるには何を使用しますか?
Laravel-admin でプロンプトレイヤーをポップアップする 3 つの方法
1.
admin_toastr('导入成功'); return redirect('/admin/list');
2.
public function destroy($user_id, $id) { if ($this->form()->destroy($id)) { return response()->json([ 'status' => true, 'message' => trans('admin::lang.delete_succeeded'), ]); } else { return response()->json([ 'status' => false, 'message' => trans('admin::lang.delete_failed'), ]); } }
メッセージ置換のヒントに注意してください
3.
use Illuminate\Support\MessageBag; if ($bool) { $success = new MessageBag([ 'title' => '回复成功' ]); return redirect(url('admin/doctor_advisory'))->with(compact('success')); } else { $error = new MessageBag([ 'title' => '回复失败' ]); return redirect(url("admin/doctor_advisory/" . $id . "/edit"))->with(compact('error')); }
推奨学習:「laravel ビデオ チュートリアル」
以上がLaravelでプロンプトボックスをポップアップするために何を使用するかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。