Magento分层产品系列

时间:2012-05-17 08:01:15

标签: magento

如何在扩展中获取过滤产品集合ID。 对于当前类别,我们只是获取 Mage :: registry('current_category') - > getProductCollection() - > getAllIds(),以及我们如何检索已过滤的产品集合(实际上不是产品集合,但所有已经过滤的产品ID)

1 个答案:

答案 0 :(得分:6)

获取已过滤的产品集合您可以使用以下代码:

$filteredList = $this->getLayout()
        ->getBlockSingleton('catalog/product_list')
        ->getLoadedProductCollection();

此代码应在块内执行。