我有简单的线条,但它不起作用。
$this->getView($input->get('my_wiew', 'Sites', 'CMD'), 'HTML');
//some code
parent::display();
如果我简单地转到网址index.php?option=com_my_component&view=sites
我会看到我的视图,但默认情况下它不想加载。
答案 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