1
我有我的自定義magento插件。我在產品頁面中有圖像滑塊。我想通過產品頁面中的ajax調用特定的模板(abc.phtml)文件。有人可以幫助我嗎?通過ajax調用Magento .phtml文件
感謝
我有我的自定義magento插件。我在產品頁面中有圖像滑塊。我想通過產品頁面中的ajax調用特定的模板(abc.phtml)文件。有人可以幫助我嗎?通過ajax調用Magento .phtml文件
感謝
創建你的控制器這樣的代碼(這會使AJAX調用)行動:
$html = Mage::getSingleton('core/layout')->createBlock('core/template')
->setTemplate('your_module/abc.phtml')->toHtml();
$this->getResponse()->setBody($html);