gpt4 book ai didi

CakePHP 2.0 ACL - 更新用户记录导致 ARO 错误

转载 作者:行者123 更新时间:2023-12-02 12:56:45 24 4
gpt4 key购买 nike

我在 CakePHP 2.3.0-RC1 中使用 ACL

当我更新用户字段(选择营销)时,出现错误:

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

我认为这与拯救用户有关。我在手册中找不到有关如何解决此问题的任何内容。

这是从 Controller 中截取的方法:

$me = $this->Session->read('Auth.User');
// don't use the session to display, because they might have subscribed/unsubscribed
$user = $this->User->find('first',array('conditions'=>array('User.id'=>$me['id'])));
$optin = ! $user['User']['optin'];
$data = array(
'User' => array(
'id' => $me['id'],
'optin' => $optin
)
);
if ( $this->User->save($data) )
{
$this->Session->setFlash(__('Subscription status has been amended'));
}
else
{
$this->Session->setFlash(__('The user could not be saved. Please, try again.'));
}
$this->redirect(array('action'=>'account'));

重定向后,我收到 ARO 错误。

最佳答案

根据评论,我只是将其写为答案。

我将用户模型设置为请求者,但实际上打算在相关的“组”模型上使用基于角色的身份验证。

我设置了父节点,但忽略了从用户模型中取出“Acts As Requester”。

评论这一点很有效 - 我实际上不需要用户(只是组)的 ARO 对象,它之所以存在只是因为 Cake 教程包含它。

关于CakePHP 2.0 ACL - 更新用户记录导致 ARO 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13862744/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com