我的magento中的知識並不深,所以我在magento全局消息輸出中遇到了麻煩。Magento中的全局消息出現的問題
我創建了我的模塊。在我的模塊的索引頁面(路線是/優惠券)我有一個表格。因此,通過文章中,我將數據發送到控制器(路線是一樣的(/ voucehrs))其中I驗證數據:
if(!isset($post["to_name"]) || !$post['to_name'])
{
Mage::getSingleton('customer/session')->addError($this->__('Please enter "To Name" information'));
$errors = 1;
}
...
if(!$errors)
{
Mage::getSingleton('customer/session')->addSuccess($this->__('Your order is successfully saved and now is in process'));
}
在我使用<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
但沒有任何反應的模板,雖然我甩會話變量在那裏我可以看到成功的消息。
我哪裏錯了?