所属分类:php教程
laravel中弹出提示框用if语句实现,其实现方法有:1、设置“return redirect('/admin/list');”;2、使用“public function destroy($user_id, $id){...}”;3、通过“if ($bool) {$success = new MessageBag([...])...}”方法实现弹窗提示即可。
Laravel 9 保姆级视频教程,想学不会都难!进入学习
本教程操作环境:Windows7系统、Laravel5.7版、Dell G3电脑。
laravel中弹出提示框用什么?
Laravel-admin弹出提示层的三种方法
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'),
]);
}
}
登录后复制
注意替换message提示
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中弹出提示框用什么的详细内容,更多请关注zzsucai.com其它相关文章!