5
我需要在下面的代碼中取消在magento中的錯誤消息會話。如何取消設置Magento錯誤消息會話?
Mage::getSingleton('core/session')->addError($message);
任何人都可以幫助我嗎?
我需要在下面的代碼中取消在magento中的錯誤消息會話。如何取消設置Magento錯誤消息會話?
Mage::getSingleton('core/session')->addError($message);
任何人都可以幫助我嗎?
您應該可以使用下面的代碼,雖然它會返回所有消息(它不會迴應他們),它會清除它們:
Mage::getSingleton('core/session')->getMessages(true); // The true is for clearing them after loading them
我希望這回答了你的問題。^_^
非常感謝@Menno。 Works Awesome .... – 2013-03-08 09:33:50