我创建了一个组件,在这个组件中我尝试重定向到不同的控制器/动作,但我收到错误:“ Error: Call to undefined method SessionRestComponent::redirect()
”
我的组件代码:
function iniciaSessao($username=''){
$_SESSION['username'] = $username;
// debug(isset($_SESSION['username']));
if (isset($_SESSION['username'])) {
$this->redirect(array('controller' => 'registos', 'action' => 'indexUser'));
}
}
任何人都可以帮助我吗?