0

我想用 CakeDc 用户插件实现一个仅限组的 acl。我遵循了 cake 的“Simple Acl controller Application guide”。我在用户模型上有以下内容:

public $belongsTo = array(
    'Role' => array(
        'className' => 'Role',
        'foreignKey' => 'role_id',
        'conditions' => '',
        'fields' => '',
        'order' => ''
    )
);

 public $actsAs = array('Acl' => array('type' => 'requester', 'enabled' => false));

 public function parentNode() {
    if (!$this->id && empty($this->data)) {
        return null;
    }
    if (isset($this->data['User']['role_id'])) {
        $roleId = $this->data['User']['role_id'];
    } else {
        $roleId = $this->field('role_id');
    }
    if (!$roleId) {
        return null;
    } else {
        return array('Role' => array('id' => $roleId));
    }
}

public function bindNode($user) {
    return array('model' => 'Model.Role', 'foreign_key' => $user['User']['role_id']);
}

我在角色模型上有这个:

public $actsAs = array('Acl' => array('type' => 'requester'));

public function parentNode() {
    return null;
}
    public $hasMany = array(
    'User' => array(
        'className' => 'User',
        'foreignKey' => 'role_id',
        'dependent' => false,
        'conditions' => '',
        'fields' => '',
        'order' => '',
        'limit' => '',
        'offset' => '',
        'exclusive' => '',
        'finderQuery' => '',
        'counterQuery' => ''
    )
);

我似乎没有工作,它仍然问我 aro。

AclNode::node() - Couldn't find Aro node identified by "Array ( [Aro0.model] => User [Aro0.foreign_key] => 51 ) "

我应该怎样纠正他们的错误?提前致谢。

4

2 回答 2

0

在 User.php 中尝试:

public function bindNode($user) {
    return array('model' => 'Role', 'foreign_key' => $user['User']['role_id']);
}

代替

public function bindNode($user) {
    return array('model' => 'Model.Role', 'foreign_key' => $user['User']['role_id']);
}
于 2014-06-25T17:51:50.190 回答
-1

设置userModelAuthComponent授权方法。它的名称不是标准的(用户),因为您正在扩展Users组件的用户模型。然而,Auth 和 Acl 必须知道。

于 2014-08-19T16:55:11.327 回答