第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在 Symfony Controller 上調(diào)用“addFlash”方法后將 flash

在 Symfony Controller 上調(diào)用“addFlash”方法后將 flash

Go
萬千封印 2022-12-23 12:27:28
我有一個(gè) Symfony 服務(wù),用于向數(shù)據(jù)庫添加警報(bào)(DOM 中的引導(dǎo)警報(bào)),以允許管理員審核應(yīng)用程序的使用情況,并且該服務(wù)還將警報(bào)保存在會(huì)話存儲(chǔ)中以顯示警報(bào),直到用戶關(guān)閉每個(gè)警報(bào)。這是服務(wù)方法的代碼:public function addAlert(DateTimeInterface $eventDatetime, string $eventType, string $data, UserInterface $user, string $alertId): bool{    $success = false;    try {        //Build alert entity        $alert = new UserAlert();        $alert->setDatetimeUTC($eventDatetime);        $alert->setEventType($eventType);        $alert->setMessage($data);        $alert->setUser($user);        //Save in database        $this->entityManager->persist($alert);        $this->entityManager->flush();        //Save in session        $success = $this->saveAlertInSession($alertId, $eventType, $data);    } catch (Throwable $throwable) {        $this->logger->critical("Add User Alert Service: Ko. Details: {$throwable->getMessage()}.");    }    return $success;}private function saveAlertInSession(string $alertId, string $eventType, string $data): bool{    $alerts = [];    try {        //Check if any alert is stored to retrieve        if ($this->session->has('alerts')) {            $alerts = $this->session->get('alerts');        }        //Add new alert        $alerts[$alertId] = [            'type' => $eventType,            'data' => $data,        ];        //Save to session        $this->session->set('alerts', $alerts);        $success = true;    } catch (Throwable $throwable) {        $success = false;        $message = "Save Alert Session: Ko. Details: {$throwable->getMessage()}.";        $this->logger->critical($message);    }    return $success;}我的問題是 Symfony 是否有一個(gè)事件偵聽器來在每次我在控制器上編寫以下行時(shí)自動(dòng)調(diào)用此服務(wù)方法:$this->addFlash('success', $message);$this->addFlash('error', $message);$this->addFlash('warning', $message);現(xiàn)在,在我向 Flash Bag 消息中添加一條消息后,我的控制器將執(zhí)行以下指令:$this->alertsService->addAlert($datetimeUTCNow, $eventType, $message, $user, $alertId);你知道有什么事件偵聽器可以避免每次控制器調(diào)用 addFlash 方法時(shí)都寫這一行嗎?我正在使用 Symfony 5 和 PHP 7.3
查看完整描述

1 回答

?
長(zhǎng)風(fēng)秋雁

TA貢獻(xiàn)1757條經(jīng)驗(yàn) 獲得超7個(gè)贊

這是我覆蓋 addFlash 方法的解決方案:


protected function addFlash(string $type, string $message): void

{

    // Generate the required arguments on userAlerts service

    try {

        $datetimeUTC = new DateTime('now', new DateTimeZone('UTC'));

        $alertId = Uuid::uuid4();


        $this->userAlertsService->addAlert($datetimeUTC, $type, $message, $this->getUser(), $alertId);

    } catch (Throwable $throwable) {

        $this->logger->critical("Add Flash: Ko. Details: {$throwable->getMessage()}");

    }


    parent::addFlash($type, $message);

}


查看完整回答
反對(duì) 回復(fù) 2022-12-23
  • 1 回答
  • 0 關(guān)注
  • 88 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)