3

単純な行がありますが、機能しません。

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

URL に移動するindex.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 に答える