这是我的公共添加功能,但有一点错误,
如果用户(他的电子邮件或用户名)存在,这个函数无论如何都会保存它!
那么,我如何查询以通过 [user][email] 进行搜索,然后通过 [user][username] 进行搜索以确认将进入数据库的用户名和电子邮件是包含用户名和电子邮件的新数据
public function add() {
if ($this->request->is('post')) {
////here it should be the query !
$this->User->create();
if ($this->User->save($this->request->data)) {
$this->redirect(array('controller' => 'users', 'action' => 'login' ));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('الموقع مش عارف يسيفك يا فقيع, حاول تاني'));
}
}
}