我花了一些时间试图弄清楚这一点,但无济于事。如果我有一系列页面显示由制造商过滤的产品集合,并且我想要在每个页面的左栏中进行一些导航,其中包含包含当前制造商产品的类别列表,如何我要在不使用一些非常慢的代码的情况下填充它?(有几千种产品)。
我可以将与此类似的内容放在一个循环中,遍历每个类别,查看是否有针对每个类别返回的制造商的任何结果,但考虑到有几百个类别,这将相当慢。
$category = $currentCategory;
$layer = Mage::getSingleton('catalog/layer');
$layer->setCurrentCategory($category);
$attributes = $layer->getFilterableAttributes();
$manufacturers = array();
foreach ($attributes as $attribute) {
if ($attribute->getAttributeCode() == 'manufacturer') {
$filterBlockName = 'catalog/layer_filter_attribute';
$result = Mage::app()->getLayout()->createBlock($filterBlockName)->setLayer($layer)->setAttributeModel($attribute)->init();
foreach($result->getItems() as $option) {
$manufacturers[$option->getValue()] = $option->getLabel();
}
}
}
如果有人有更好的想法,我将不胜感激。