0

升级后我收到错误:

Fatal error: Call to a member function getSize() on a non-object in ./app/design/frontend/base/default/template/catalog/product/list/toolbar.phtml on line 34

违规线路:<?php if($this->getCollection()->getSize()): ?>

经过一些快速调试后,我发现 getCollection 返回 null。作为一种解决方法,我手动设置了集合:

$collection = Mage::getModel('catalog/product')->getCollection()
            ->addAttributeToSelect('*');
$this->setCollection($collection);

我的问题,为什么不设置集合?一般会设置在哪里?

4

1 回答 1

1

通常在父catalog/product_list块的_beforeToHtml方法中设置。

#File: app/code/core/Mage/Catalog/Block/Product/List.php
protected function _beforeToHtml()
{
    $toolbar = $this->getToolbarBlock();

    // called prepare sortable parameters
    $collection = $this->_getProductCollection();

    // use sortable parameters
    if ($orders = $this->getAvailableOrders()) {
        $toolbar->setAvailableOrders($orders);
    }
    if ($sort = $this->getSortBy()) {
        $toolbar->setDefaultOrder($sort);
    }
    if ($dir = $this->getDefaultDirection()) {
        $toolbar->setDefaultDirection($dir);
    }
    if ($modes = $this->getModes()) {
        $toolbar->setModes($modes);
    }

    // set collection to toolbar and apply sort
    $toolbar->setCollection($collection);

    $this->setChild('toolbar', $toolbar);
    Mage::dispatchEvent('catalog_block_product_list_collection', array(
        'collection' => $this->_getProductCollection()
    ));

    $this->_getProductCollection()->load();

    return parent::_beforeToHtml();
}

特别是这一行。

$toolbar->setCollection($collection);

我的猜测是您的系统已被大量修改,因此工具栏块不再catalog/product_list作为父级。

于 2012-11-09T07:56:24.063 回答