0
以下是我的Controller
類的一些示例方法。現在當用戶點擊New按鈕時,$ task = add被髮送給Controller,並調用add()方法。正如你所看到的,它並沒有做任何事情,它只是創建一個url並將其轉發給正確的視圖。這是以MVC模式做事的正確方法嗎?Joomla轉發代碼到視圖...這是正確的方法嗎?
/**
* New button was pressed
*/
function add() {
$link = JRoute::_('index.php?option=com_myapp&c=apps&view=editapp&cid[]=', false);
$this->setRedirect($link);
}
/**
* Edit button was pressed - just use the first selection for editing
*/
function edit() {
$cid = JRequest::getVar('cid', array(0), '', 'array');
$id = $cid[0];
$link = JRoute::_("index.php?option=com_myapp&c=apps&view=editapp&cid[]=$id", false);
$this->setRedirect($link);
}
你知道什麼weblinks edit()方法給我,我的不? – jax 2010-06-20 02:42:21