获取第一个收集项而不破坏寻呼机

时间:2011-06-15 19:12:14

标签: magento

我之前发布了一个关于此的问题,但我现在有更多的信息,我认为最好发布一个新的而不是修改(抱歉,如果这不是正确的协议)。您可以找到我原来的问题here

无论如何,最初的问题是我想在设置集合之后检查List.php类中集合中的第一个项目,以便我可以抓取类别并使用它来显示评论。这完全基于自定义模块,所以有很多变量。我已经在默认的Magento示例商店中尝试了它,并且只将 ONE 行添加到app/code/core/Mage/catalog/Block/Product/List.php以打破寻呼机。这是详细信息。如果你有任何想法为什么会这样,请告诉我,因为我被困了

首先,打开app/code/core/Mage/catalog/Block/Product/List.php并找到_getProductCollection功能。在if (is_null...)块的末尾添加$_foo123 = $this->_productCollection->getFirstItem();,以便您拥有如下所示的函数:

protected function _getProductCollection()
{
    if (is_null($this->_productCollection)) {
        $layer = $this->getLayer();
        /* @var $layer Mage_Catalog_Model_Layer */
        if ($this->getShowRootCategory()) {
            $this->setCategoryId(Mage::app()->getStore()->getRootCategoryId());
        }

        // if this is a product view page
        if (Mage::registry('product')) {
            // get collection of categories this product is associated with
            $categories = Mage::registry('product')->getCategoryCollection()
            ->setPage(1, 1)
            ->load();
            // if the product is associated with any category
            if ($categories->count()) {
                // show products from this category
                $this->setCategoryId(current($categories->getIterator()));
            }
        }

        $origCategory = null;
        if ($this->getCategoryId()) {
            $category = Mage::getModel('catalog/category')->load($this->getCategoryId());
            if ($category->getId()) {
                $origCategory = $layer->getCurrentCategory();
                $layer->setCurrentCategory($category);
            }
        }
        $this->_productCollection = $layer->getProductCollection();

        $this->prepareSortableFieldsByCategory($layer->getCurrentCategory());

        if ($origCategory) {
            $layer->setCurrentCategory($origCategory);
        }

        //THIS LINE BREAKS THE PAGER
        $_foo123 = $this->_productCollection->getFirstItem();
    }

    return $this->_productCollection;
}

现在,只需转到使用该类的任何产品列表(例如,类别视图),您就会明白我的意思。无论您在工具栏中的每页显示XX 下选择什么,它都会始终显示列表中的所有项目。如果您注释掉$_foo123...行,则可以正常使用。

是什么?

P.S。我知道我不应该编辑核心文件......这只是一个例子:)

1 个答案:

答案 0 :(得分:14)

原因是当您在集合已加载的集合上调用getFirstItem()(或几乎任何其他检索方法)时。任何后续操作都会忽略数据库并仅使用加载的数据,过滤器不起作用,因为它们只是SQL,同样适用于分页和选定的列。解决方法是使用基于第一个集合的第二个集合。

$secondCollection = clone $firstCollection;
$secondCollection->clear();
$_foo123 = $secondCollection->getFirstItem();

clear()方法卸载该集合的数据,强制它下次再次访问数据库。