如何在扩展中获取过滤产品集合ID。 对于当前类别,我们只是获取 Mage :: registry('current_category') - > getProductCollection() - > getAllIds(),以及我们如何检索已过滤的产品集合(实际上不是产品集合,但所有已经过滤的产品ID)
答案 0 :(得分:6)
获取已过滤的产品集合您可以使用以下代码:
$filteredList = $this->getLayout()
->getBlockSingleton('catalog/product_list')
->getLoadedProductCollection();
此代码应在块内执行。