获取 Magento 中的基本产品图片
2022-08-31 00:43:38
我想在Magento中获取基本产品图像以调整其大小并显示在购物车侧边栏中。
不幸的是:
echo $this->helper('catalog/image')->init($_product, 'image')->resize(38, 38);
打印洋红色占位符图像。
已正确设置此产品的基本映像。小图像和缩略图效果很好。
不知道发生了什么。
编辑:解决方案:通过以下方式获取完整的产品数据:
$_product = Mage::getModel('catalog/product')->load($_item->getProduct()->getId());
然后根据需要使用它:
echo $this->helper('catalog/image')->init($_product, 'image')->resize(38, 38);