如何在joomla控制器中加载不同的视图?

时间:2012-11-09 06:44:53

标签: joomla joomla2.5

我有简单的线条,但它不起作用。

$this->getView($input->get('my_wiew', 'Sites', 'CMD'), 'HTML');
//some code
parent::display();

如果我简单地转到网址index.php?option=com_my_component&view=sites我会看到我的视图,但默认情况下它不想加载。

1 个答案:

答案 0 :(得分:5)

$view   = $this->getView('view_name', 'html'); //get the view
$view->assignRef('data', $data_from_model); // assign data from the model
$view->display(); // display the view

Read more