我正在尝试使用以下代码从我的控制器加载视图,但我只获得原始HTML视图,并且不显示网站的模板。
$view = $this->getView( 'download', 'html' );
$view->display();
有些人可以帮助我解决显示网站模板的错误。
我也尝试了重定向,但这也不起作用
$this->redirect(JRoute::_('index.php?option=com_atdwcsv&view=download'), false);
编辑:我弄清楚重定向有什么问题。我需要的代码是
$this->setRedirect('index.php?option=com_atdwcsv&view=download');
$this->redirect();
答案 0 :(得分:0)
我可能错了,但我认为您不需要在视图上使用display()
方法,我认为您需要使用$this->display();
代替。