Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有我的自定义 magento 插件。我在产品页面中有图像滑块。我想通过产品页面中的 ajax 调用特定的模板(abc.phtml)文件。有人可以帮助我吗?
谢谢
在您的控制器中创建这样的代码(这将呈现 AJAX 调用)操作:
$html = Mage::getSingleton('core/layout')->createBlock('core/template') ->setTemplate('your_module/abc.phtml')->toHtml(); $this->getResponse()->setBody($html);