6

我需要在 magento 中为以下代码取消设置错误消息会话。

Mage::getSingleton('core/session')->addError($message);

谁能帮我?

4

1 回答 1

21

您应该能够使用以下代码,尽管它会返回所有消息(它不会回显它们),但它会清除它们:

Mage::getSingleton('core/session')->getMessages(true); // The true is for clearing them after loading them

我希望这回答了你的问题。^_^

于 2013-03-08T09:24:40.753 回答