gpt4 book ai didi

php - CakePHP ACL 教程 group_id

转载 作者:搜寻专家 更新时间:2023-10-31 20:48:52 25 4
gpt4 key购买 nike

我正在关注 http://book.cakephp.org/2.0/en/tutorials-and-examples/simple-acl-controlled-application/simple-acl-controlled-application.html教程,我在您添加组和用户帐户的部分...

但是,当我访问添加新用户时,该组的下拉列表是空的...可能有什么问题?

这是 User.php 模型的样子

<?php
App::uses('AppModel', 'Model');
/**
* User Model
*
* @property Group $Group
* @property Image $Image
*/
App::uses('AuthComponent', 'Controller/Component');
class User extends AppModel {
/**
* Display field
*
* @var string
*/
//The Associations below have been created with all possible keys, those that are not needed can be removed

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

public function beforeSave() {
$this->data['User']['password'] = AuthComponent::password($this->data['User']['password']);
return true;
}
public function bindNode($user) {
return array('model' => 'Group', 'foreign_key' => $user['User']['group_id']);
}

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

}
if (!$groupId) {
return null;
} else {
return array('Group' => array('id' => $groupId));
}
}
public $belongsTo = array(
'Group' => array(
'className' => 'Group',
'foreignKey' => 'group_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);



public $hasMany = array(
'Image' => array(
'className' => 'Image',
'foreignKey' => 'user_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
);

}

这是 Group.php 模型的样子

<?php
App::uses('AppModel', 'Model');
/**
* Group Model
*
* @property User $User
*/
class Group extends AppModel {
/**
* Display field
*
* @var string
*/
public $displayField = 'name';
/**
* Validation rules
*
* @var array
*/
//The Associations below have been created with all possible keys, those that are not needed can be removed

/**
* hasMany associations
*
* @var array
*/
public $actsAs = array('Acl' => array('type' => 'requester'));

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

}

我的表格是这样的'用户'表

>     > Field   Type    Null    Key Default Extra
> > id int(11) NO PRI NULL auto_increment
> > username varchar(64) NO UNI NULL password varchar(82) NO NULL
> > first_name varchar(64) NO NULL last_name varchar(64) NO NULL
> > created datetime YES NULL group_id int(11) NO NULL

'组'表

Field   Type    Null    Key Default Extra
id int(11) NO PRI NULL auto_increment
name varchar(100) NO NULL
created datetime YES NULL
modified datetime YES NULL

查看/Users/add.ctp代码

<div class="users form">
<?php echo $this->Form->create('User');?>
<fieldset>
<legend><?php echo __('Add User'); ?></legend>
<?php
echo $this->Form->input('username');
echo $this->Form->input('password');
echo $this->Form->input('first_name');
echo $this->Form->input('last_name');
echo $this->Form->input('group_id');
?>
</fieldset>
<?php echo $this->Form->end(__('Submit'));?>
</div>
<div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>

<li><?php echo $this->Html->link(__('List Users'), array('action' => 'index'));?></li>
<li><?php echo $this->Html->link(__('List Groups'), array('controller' => 'groups', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Group'), array('controller' => 'groups', 'action' => 'add')); ?> </li>
<li><?php echo $this->Html->link(__('List Images'), array('controller' => 'images', 'action' => 'index')); ?> </li>
<li><?php echo $this->Html->link(__('New Image'), array('controller' => 'images', 'action' => 'add')); ?> </li>
</ul>
</div>

我创建了 2 个组。一种是“访客”,一种是“管理员”..这是 aros 表现在的样子

id  parent_id   model   foreign_key alias   lft rght
2 NULL Group 4 1 2
3 NULL Group 5 3 4

最佳答案

你有没有先加群?首先,您必须添加组,然后尝试添加用户。

请确认您在用户模型 User.php 中设置了 belongsTo 关系

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

检查您的 UserController Add 方法是否有以下代码
请验证 $groups = $this->User->Group->find('list');
$this->set(compact('groups'));
部分

    public function add() {
if ($this->request->is('post')) {
$this->User->create();
if ($this->User->save($this->request->data)) {
$this->Session->setFlash(__('The user has been saved'));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('The user could not be saved. Please, try again.'));
}
}
$groups = $this->User->Group->find('list');
$this->set(compact('groups'));
}

关于php - CakePHP ACL 教程 group_id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10377739/

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