我在Magento 2中开发了“Test Message”扩展。在这个扩展中,我创建了\ Magento \ Framework \ Message \ ManagerInterface类对象并调用了addSuccess()和addError()方法。
$this->messageManager->addSuccess('Custom success message');
$this->messageManager->addError('Custom Error message');
但它只适用于Firefox。当我在chrome中运行此扩展时,成功和错误消息无效?
此外,Magento 2内置系统消息仅在Firefox中显示。这些系统消息也不会显示在chrome中。 所以..这是Magento 2的错误?如果这不是错误,那么这个问题的解决方案是什么?
请帮帮我。任何帮助将不胜感激。
答案 0 :(得分:0)
尝试使用addSuccessMessage(),addErrorMessage()
或者 清除浏览器缓存和Cookie,然后尝试。