문제

I have phtml form, whenever i get any error it shows a page like this enter image description here

i want to show these type of errors like this enter image description here

도움이 되었습니까?

해결책

In your module controller

try {
            //Your program logic

    } catch (\Exception $e) {
            $this->messageManager->addErrorMessage("Your error message{$e->getMessage()}.");
            $this->_redirect('*/*/');
            return;
   }
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top