laravel의 팝업 프롬프트 상자는 if 문을 사용하여 구현됩니다. 구현 방법은 다음과 같습니다. 1. "return 리디렉션('/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
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!