0
我想檢查一個電子郵件/用戶名是否是唯一的控制器。我爲isUnique寫了模型驗證並且它工作。但我也想在控制器中使用它。像cakephp:從控制器檢查isunique
$this->User->validates(array('email'=>'[email protected]'));
或
$this->User->checkunique();
//is this the right way to write a different function again.
一些事情,我知道我可以從控制器使用findByEmail並檢查是否返回結果爲空。但我覺得有一個更簡單的方法或cakephp提供的已有方法。如果我錯了,請糾正我,並讓我指出在這方面的正確方法。
感謝, 基蘭