我尝试使用AuthComponent类中的identify函数中使用的FormAuthenticate函数来检查数据库中的用户和密码,但似乎AuthComponenent类默认不使用它
我是否必须进行一些设置才能使用FormAuthenticate功能?
此致
谢
答案 0 :(得分:0)
默认情况下应该使用Form
,但如果您想在Auth
$components
添加public $components = array(
'Auth' => array(
'authenticate' => array('Form')
));
时强行使用此功能:
{{1}}