TL; DR : Làm cách nào để tải hình ảnh / bộ sưu tập sản phẩm mà không tải toàn bộ sản phẩm?
Tôi muốn tải hình ảnh trên một sản phẩm. Những gì tôi làm trong .phtml
$_popularCollection = $this->getPopularCollection();
foreach ($_popularCollection as $_product):
// the rest
$mediaGallery = $_product->getMediaGalleryImages();
endforeach;
//the rest
Những gì tôi làm trong lớp Block:
public function getPopularCollection() {
// http://magento.stackexchange.com/q/5838/3089
// no category
if ( is_null( $this->getCategoryId() ) )
return false;
/** @var Mage_Catalog_Model_Category $category */
$category = Mage::getModel('catalog/category')->load( (int)$this->getCategoryId() );
/** @var Mage_Catalog_Model_Resource_Product_Collection $_popularCollection */
$_popularCollection = Mage::getModel('catalog/product')->getResourceCollection();
$_popularCollection->addAttributeToSelect('*');
$_popularCollection->setStoreId(Mage::app()->getStore()->getId());
$_popularCollection->addCategoryFilter($category);
return $_popularCollection;
}
Điều này hoạt động Nhưng tôi tải tất cả mọi thứ: $_popularCollection->addAttributeToSelect(*);
Tôi đã thử $_popularCollection->addAttributeToSelect('media_gallery');
Nhưng nó dường như không hoạt động.