3

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

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

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

4

1 回答 1

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

阅读更多

于 2012-11-09T06:46:54.637 回答