默认情况下,AuthComponent使用FormAuthenticate

时间:2013-07-21 17:35:01

标签: php cakephp authentication

我尝试使用AuthComponent类中的identify函数中使用的FormAuthenticate函数来检查数据库中的用户和密码,但似乎AuthComponenent类默认不使用它

我是否必须进行一些设置才能使用FormAuthenticate功能?

此致

1 个答案:

答案 0 :(得分:0)

默认情况下应该使用Form,但如果您想在Auth $components添加public $components = array( 'Auth' => array( 'authenticate' => array('Form') )); 时强行使用此功能:

{{1}}