0

我试图在提交表单后让我的联系表单重定向到主页。我设置了我的模块并且可以确认它正在工作。在下面的代码中,我收到了“预调度”和“索引操作”日志消息,但没有收到“后操作”,正如您所料,它也不会在完成后将我重定向到主页。我确实正确收到了联系电子邮件。谁能告诉我为什么前两个函数可以正常工作而 postAction() 不能?

我将原始控制器中的所有代码复制到我的控制器中以进行故障排除。除了添加日志消息和底部的重定向之外,一切都是默认的。

class MyCompany_Contacts_IndexController extends Mage_Contacts_IndexController
{   
const XML_PATH_EMAIL_RECIPIENT  = 'contacts/email/recipient_email';
const XML_PATH_EMAIL_SENDER     = 'contacts/email/sender_email_identity';
const XML_PATH_EMAIL_TEMPLATE   = 'contacts/email/email_template';
const XML_PATH_ENABLED          = 'contacts/contacts/enabled';

public function preDispatch()
{
    parent::preDispatch();
    Mage::log('Pre-dispatched');

    if( !Mage::getStoreConfigFlag(self::XML_PATH_ENABLED) ) {
        $this->norouteAction();
    }
}

public function indexAction()
{
    Mage::log('Index Action.');
    $this->loadLayout();
    $this->getLayout()->getBlock('contactForm')
        ->setFormAction( Mage::getUrl('*/*/post') );

    $this->_initLayoutMessages('customer/session');
    $this->_initLayoutMessages('catalog/session');
    $this->renderLayout();
}

public function postAction()
{
    parent::postAction();
    Mage::log('Post Action.');
    $post = $this->getRequest()->getPost();
    if ( $post ) {
        $translate = Mage::getSingleton('core/translate');
        /* @var $translate Mage_Core_Model_Translate */
        $translate->setTranslateInline(false);
        try {
            $postObject = new Varien_Object();
            $postObject->setData($post);

            $error = false;

            if (!Zend_Validate::is(trim($post['name']) , 'NotEmpty')) {
                $error = true;
            }

            if (!Zend_Validate::is(trim($post['comment']) , 'NotEmpty')) {
                $error = true;
            }

            if (!Zend_Validate::is(trim($post['email']), 'EmailAddress')) {
                $error = true;
            }

            if (Zend_Validate::is(trim($post['hideit']), 'NotEmpty')) {
                $error = true;
            }

            if ($error) {
                throw new Exception();
            }
            $mailTemplate = Mage::getModel('core/email_template');
            /* @var $mailTemplate Mage_Core_Model_Email_Template */
            $mailTemplate->setDesignConfig(array('area' => 'frontend'))
                ->setReplyTo($post['email'])
                ->sendTransactional(
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_TEMPLATE),
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_SENDER),
                    Mage::getStoreConfig(self::XML_PATH_EMAIL_RECIPIENT),
                    null,
                    array('data' => $postObject)
                );

            if (!$mailTemplate->getSentSuccess()) {
                throw new Exception();
            }

            $translate->setTranslateInline(true);

           // Mage::getSingleton('customer/session')->addSuccess(Mage::helper('contacts')->__('Your inquiry was submitted and will be responded to as soon as possible. Thank you for contacting us.'));
            $this->_redirect('');

            return;
        } catch (Exception $e) {
            $translate->setTranslateInline(true);

           // Mage::getSingleton('customer/session')->addError(Mage::helper('contacts')->__('Unable to submit your request. Please, try again later'));
            $this->_redirect('');
            return;
        }

    } else {
        $this->_redirect('');
    }
}

}

配置文件

<?xml version="1.0" encoding="UTF-8"?>
<config>
  <modules>
    <MyCompany_Contacts>
        <version>0.0.1</version>
    </MyCompany_Contacts>
  </modules>

  <frontend>
    <routers>
      <contacts>
        <args>
          <modules>
              <MyCompany_Contacts before="Mage_Contacts">MyCompany_Contacts</MyCompany_Contacts>
          </modules>
        </args>
      </contacts>
    </routers>
  </frontend>
</config>
4

2 回答 2

1

问题在于parent::postAction();您的自定义 postAction 中的部分。您现在正在做的是将表单发布到 /post。它最终会出现在您的 postAction 中,但随后会直接通过 parent::postAction() 路由。

因此Mage_Contacts_IndexController::postAction(),父方法也包含发送电子邮件的逻辑。因此,您收到一个。问题是在父方法的末尾仍然有重定向$this->_redirect('*/*/');。这可以防止代码到达您的 `Mage::log('Post Action.') 和您的其余自定义代码。

解决方案:删除parent::postAction()并且您的方法中的自定义代码postAction将被执行,最终您自己的重定向到主页将被运行。

于 2012-08-14T17:22:08.020 回答
0

我想我想通了。我记得 Akismet 在发送数据之前会对其进行分析,因此完全有可能默认的 Mage_Contacts 已经得到扩展,并且首先通过该模块。将日志记录添加到 Akismet 控制器中的 postAction() 并对其进行验证。感谢您让我走上正轨。

于 2012-08-14T18:10:12.330 回答