如何在 displayajax() 函数中显示“分配的模板变量”(我使用的是 prestashop 1.5.6.0)。
如果你去:
sitedomain/index.php?id_product=1&controller=product you see the product
但如果你去:
sitedomain/index.php?id_product=1&controller=product&ajax=true you see a blank page
为了在该页面中有一些输出,我在 ProductController.php 中添加了这个函数,它可以工作:
public function displayAjax()
{
echo "something";
}
如何访问我通常在 prestashop 的调试控制台中看到的所有“分配的模板变量”......比如 $combinations $groups...
谢谢!