Magento得到缩略图图像url显示在购物车上


Magento get thumbnail image url to be displayed on cart

我在获取Magento Cart上项目的缩略图图像url时遇到问题

下面是我的代码:
$quote = Mage::getSingleton('checkout/session')->getQuote();
$cartItems = $quote->getAllVisibleItems();
foreach ($cartItems as $item) {
echo $item->getThumbnail();
}

有谁知道为什么它总是返回空白

Mage::helper('catalog/image')->init($item->getProduct(), 'thumbnail');

就行