我使用 a tutorial 在Magento中制作联系表格模块:
然而,他描述如何输出成功消息的方式并不起作用。或者我做错了。我想我可以:
Mage::getSingleton('core/session')->addSuccess('Success!');
但这只会导致空白页面。
是否有人知道我可以在上述网站中列出的代码中显示成功消息?
谢谢!
答案 0 :(得分:1)
尝试使用customer/session
代替core/session
。
另外,请务必在代码中附加重定向:
Mage::getSingleton('customer/session')->addSuccess('Success!');
$this->_redirect('your-url/');