Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有简单的线路,但它不起作用。
$this->getView($input->get('my_wiew', 'Sites', 'CMD'), 'HTML'); //some code parent::display();
如果我简单地转到 urlindex.php?option=com_my_component&view=sites我得到我的视图,但默认情况下它不想加载。
index.php?option=com_my_component&view=sites
$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
阅读更多