我想用CakeDc Users插件实现一个只有组的acl。我跟着蛋糕" Simple Acl控制器应用指南"。 我在用户模型上有以下内容:
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 ) "
我应该怎样纠正这个错误? 提前谢谢。
答案 0 :(得分: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']);
}
答案 1 :(得分:-1)
为userModel
的授权方法设置AuthComponent
。它的名称不是标准(用户),因为您正在扩展Users
组件的用户模型。然而,Auth和Acl必须知道。