我创建了一个新闻模块。它工作正常..
http://domain.com/magento/news
此页面显示所有新闻项目。带有标题、内容和日期。
当用户单击查看更多链接时,我想查看更多内容链接,它将用户重定向到特定的newsitem页面
http://domain.com/magento/news/newsitem-1
我使用以下代码创建了另一个控制器 newsitemController.php:
public function infoAction(){
$this->loadLayout();
$this->getLayout()->getBlock('content')
->append($this->getLayout()->createBlock('news/newsitem') );
$this->renderLayout();
}
还使用以下代码创建了块名称 info.php:
public function _prepareLayout()
{
return parent::_prepareLayout();
}
public function getnewsitem()
{
if(!$this->hasData('news')) {
$this->setData('news', Mage::registry('news'));
}
return $this->getData('news');
}
没有输出..
需要帮助才能获得输出。