2

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

目前正在考虑catalog_product_flat_n为此目的使用表格,但也许有更简单或更正确的方法来做到这一点?我试图避免使用

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

在每个产品上,因为这会很慢

谢谢

4

1 回答 1

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;
        }
    }

希望对你有帮助

于 2012-08-01T10:47:28.227 回答