试图在 cakephp 2x 中显示具有特定角色的用户

Trying to display a user with the specific role in cakephp 2x

我正在尝试显示 table 用户,我希望它只显示角色为 "Moderator" 的用户。

public function moderators() {

    $this->set('users', $this->paginate());
    $this->User->find('all', array(
    'conditions' => array('User.role' => 'moderator')
)); 

这是我的控制器,它似乎还在显示我的 table 中的所有数据。

尝试为此使用自定义查询:

$this->User->query("select * from users where role = 'moderator';");