获取产品列表属性值的最快方法

时间:2012-07-31 09:24:55

标签: php magento

我正在寻找在产品详情页面上获取可配置产品属性值的最有效方法,例如产品的颜色值(来自指定的简单产品)

目前正在考虑将catalog_product_flat_n表用于此目的,但也许有更简单或更正确的方法来执行此操作?我试图避免使用

$product->getTypeInstance()->getConfigurableAttributesAsArray()

关于每件产品,因为这将非常缓慢

由于

1 个答案:

答案 0 :(得分:1)

我有同样的问题,所以我创建了自己的资源模型,用于从平面表中获取数据,查看下面的代码

  <?php

    class NameSpace_ModuleName_Model_Resource_Colors extends
        Mage_Core_Model_Resource_Db_Abstract
    {
        protected $_storeId;

        protected function _construct()
        {
            $this->_init('catalog/product_flat', 'entity_id');
            $this->_storeId = (int)Mage::app()->getStore()->getId();
        }

        public function getData($entityId)
        {
            $resource = Mage::getSingleton('core/resource');
            $select = $resource->getConnection('core_read')->select();
            $select
                ->from($this->getTable(array('catalog/product_flat', $this->_storeId)), '*')
                ->where('entity_id = :entity_id');



            $result = $resource->getConnection('core_read')->fetchAll($select, array('entity_id' => $entityId));

            return $result;
        }
    }

希望它对你有所帮助