【问题标题】:CakePHP ACL tutorial group_idCakePHP ACL 教程 group_id
【发布时间】:2012-04-30 02:05:08
【问题描述】:

我正在关注 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     

查看/用户/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

【问题讨论】:

    标签: php cakephp


    【解决方案1】:

    您是否先添加了组?首先,您必须添加组,然后尝试添加用户。

    请验证您在用户模型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'));
    }
    

    【讨论】:

    • 是的,我已经先添加了组。
    • 视图中的字段看起来像 echo $this->Form->input('group_id');
    • 能否请您发布用户模型。我认为你没有正确设置关系
    • @CodeCrack 更新了答案,请确认。
    • 是的,我也有。我使用用户和组模型代码编辑了我的原始帖子。
    猜你喜欢
    • 2014-05-06
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-01-08
    • 1970-01-01
    • 1970-01-01
    • 2012-02-14
    • 1970-01-01
    相关资源
    最近更新 更多