1

我在使用Magento的 CommerceLab 新闻模块时遇到了麻烦。

我把我的新闻放在我的电子商务主页上,一切正常,但是当我点击新闻标题时,浏览器会返回消息:

Fatal error: Call to a member function getTitle() on a non-object in app/design/frontend/iflavour/default/template/clnews/newsitem.phtml on line 2

在我的代码中,在第 1 行,我有:

$item = $this->getNewsitem()

当然,我想初始化 getNewsitem 类有问题。

4

1 回答 1

1

这怎么样?

<?php $items = Mage::getModel('clnews/news')->getCollection(); ?>
<?php foreach ($items as $item): ?>
    <?php echo $item->getTitle() ?>
<?php endforeach; ?>
于 2014-04-11T08:36:14.827 回答