1

我目前正在尝试将我的 cakephp 登录名从使用用户名字段更改为使用电子邮件字段。

使用用户名字段时,登录工作正常,这是使用用户名登录的代码:

登录.ctp

<?php
echo $this->Form->create('User');
echo $this->Form->input('username');
echo $this->Form->input('password');
echo $this->Form->end(__('Login'));
?>

用户控制器.php

public function beforeFilter() {
    parent::beforeFilter();
    $this->Auth->allow('add', 'login'); // Letting users register themselves
    $this->Auth->fields = array('username' => 'username', 'password' => 'password');
}
public function login() {
    if ($this->request->is('post')) {
        if ($this->Auth->login()) {
            $this->Session->setFlash(__('worked'));
        } else {
            debug($this->data);
            $this->Session->setFlash(__('Invalid username or password, try again'));
        }
    }
}

应用控制器

public $components = array('Session', 'Auth');

所以这一切都很好,我可以使用测试详细信息登录。

因此,要将其更改为使用电子邮件,我所做的只是:

  • 将 login.ctp 中的输入从用户名更改为电子邮件

    echo $this->Form->input('email');
    
  • 将用户控制器中的字段数组从用户名更改为电子邮件

    $this->Auth->fields = array('username' => 'email', 'password' => 'password');
    
  • 将数据库字段从用户名更改为电子邮件

然后我尝试使用相同的测试详细信息登录,它告诉我它们不正确。

有谁知道为什么这不起作用?

4

1 回答 1

6

在 Cake 2.x 中有点不同

$this->Auth->authenticate = array(
    'Form' => array(
        'fields' => array('username' => 'email', 'password' => 'password'),
    ),
);
于 2012-05-28T22:56:13.990 回答