1

所以这是这个问题的后续问题。
我在观察者的运输方法之前添加了一个步骤。我在获取用于更新步骤选项卡内容的 html 时遇到问题。尽管我尽了最大努力,它仍然加载运输方法步骤的 html 而不是我想要的 html。
这是观察者的代码:

public function gotoViesStep($observer)
{
    $response = $observer->getEvent()->getControllerAction()->getResponse();
    $body = $response->getBody();
    $result = Mage::helper('core')->jsonDecode($body);

    if (in_array('error', $result)) {
        return;
    }

    //if conditions are met, go to vies check
    if ($result['goto_section'] == 'shipping_method') {
        $quote = Mage::getSingleton('checkout/session')->getQuote();
        $shippingAddress = $quote->getShippingAddress();
        $countryId = $shippingAddress->getCountryId();

        if (($countryId != 'BE') && ($this->_countryInEU($countryId))) {
            $result['goto_section'] = 'vies';
            $result['allow_sections'][] = 'vies';
            $result['country_id'] = $countryId;

            $result['update_section'] = array(
                    'name' => 'vies',
                    'html' => $this->_getViesHtml()
                );

            $response->setBody(Mage::helper('core')->jsonEncode($result));
        }
    }
}

protected function _getViesHtml()
{
    $layout = Mage::getSingleton('core/layout');
    $update = $layout->getUpdate();
    $update->load('checkout_onepage_vies');
    $layout->generateXml();
    $layout->generateBlocks();
    $output = $layout->getOutput();
    return $output;
}

以及该句柄的 layout.xml checkout_onepage_vies

<checkout_onepage_vies>
    <remove name="right"/>
    <remove name="left"/>

    <block type="correctionvat/onepage_vies" name="root" output="toHtml" template="correctionvat/onepage/vies.phtml"/>
</checkout_onepage_vies>

如果我直接放东西而不是尝试加载块,它就可以工作。IE,如果,而不是'html' => $this->_getViesHtml()I do 'html' => 'foobar',步骤的内容是foobar.

因此,就像 OnepageController 已经对输出/布局/块收费一样,我再次对其重新收费的尝试失败了。
有什么想法吗?

4

1 回答 1

1

您面临的问题与添加的布局句柄列表有关。您需要在调用load()方法之前重置它们。resetUpdates()您还需要通过调用方法重置包含先前解析的 xml 的更新数组。

最后你getViesHtml()应该如下所示:

protected function _getViesHtml()
{
    $layout = Mage::getSingleton('core/layout');

    $layout->getUpdate()
         ->resetHandles()
         ->resetUpdates()
         ->load('checkout_onepage_vies');

    $layout->generateXml()
         ->generateBlocks();

    $output = $layout->getOutput();
    return $output;
}
于 2013-02-06T19:34:59.947 回答