通过ajax调用Magento .phtml文件

时间:2013-04-01 16:15:12

标签: ajax magento

我有自定义的magento插件。我在产品页面中有图像滑块。我想通过产品页面中的ajax调用特定模板(abc.phtml)文件。有人可以帮助我吗?

由于

1 个答案:

答案 0 :(得分:3)

在您的控制器中创建此类代码(将呈现AJAX调用)操作:

$html = Mage::getSingleton('core/layout')->createBlock('core/template')
            ->setTemplate('your_module/abc.phtml')->toHtml();
$this->getResponse()->setBody($html);