Magento2 đang sử dụng MessageInterface để thêm tất cả tin nhắn, vui lòng sử dụng mã bên dưới để hiển thị Tin nhắn
Lớp khung tin nhắn Magento
\Magento\Framework\Message\ManagerInterface
sử dụng mã dưới đây trong tập tin của bạn để thêm tin nhắn,
protected _messageManager;
public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Framework\Message\ManagerInterface $messageManager) {
parent::__construct($context);
$this->_messageManager = $messageManager;
}
và sau đó thêm các chức năng dưới đây trong phương thức của bạn để hiển thị thông báo:
$this->_messageManager->addError(__("Error Message"));
$this->_messageManager->addWarning(__("Warning"));
$this->_messageManager->addNotice(__("Notice"));
$this->_messageManager->addSuccess(__("Success Message"));
Tôi hy vọng điều này sẽ giúp bạn khắc phục vấn đề của bạn.