如何在cakephp中正确关联这些表?

时间:2015-12-22 18:35:59

标签: php mysql cakephp crud cakephp-bake

我尝试使用cakephp3创建一组CRUD。我的数据库模型如下所示:

My ER model

我使用了关于身份验证的蛋糕教程来创建用户表及其类,它运行正常。但是我想使用更复杂的角色集,所以我创建了这些其他表。创建数据库模型后,我烘焙了相应的类,进行了一些调整,并使系统和角色CRUD工作。现在我想整合roles_users表,可能在用户的CRUD中。

我想在自己编码这个关系之前看看蛋糕烘焙会怎么做,但是我无法打开/ rolesUsers。当我调用URL时,收到以下错误消息:

Cannot match provided foreignKey for "Roles", got "(role_id)" but expected foreign key for "(id, system_id)" RuntimeException

我认为这是因为system_id是角色表中的PK并且不存在于roles_users中(我将展示烘焙模型,并且此PK将出现在角色类中)。 是否有一种简单的方法可以在不在roles_users中添加system_id的情况下使其工作? IMO添加此额外字段不是一个大问题,但我想知道我是否正在做有些不对劲,一些糟糕的设计决定。

我的src / Model / Table / RolesUsersTable.php:

<?php
namespace App\Model\Table;

use App\Model\Entity\RolesUser;
use Cake\ORM\Query;
use Cake\ORM\RulesChecker;
use Cake\ORM\Table;
use Cake\Validation\Validator;

/**
 * RolesUsers Model
 *
 * @property \Cake\ORM\Association\BelongsTo $Users
 * @property \Cake\ORM\Association\BelongsTo $Roles
 */
class RolesUsersTable extends Table
{

    /**
     * Initialize method
     *
     * @param array $config The configuration for the Table.
     * @return void
     */
    public function initialize(array $config)
    {
        parent::initialize($config);

        $this->table('roles_users');
        $this->displayField('user_id');
        $this->primaryKey(['user_id', 'role_id']);

        $this->belongsTo('Users', [
            'foreignKey' => 'user_id',
            'joinType' => 'INNER'
        ]);
        $this->belongsTo('Roles', [
            'foreignKey' => 'role_id',
            'joinType' => 'INNER'
        ]);
    }

    /**
     * Default validation rules.
     *
     * @param \Cake\Validation\Validator $validator Validator instance.
     * @return \Cake\Validation\Validator
     */
    public function validationDefault(Validator $validator)
    {
        $validator
            ->add('valido_ate', 'valid', ['rule' => 'date'])
            ->requirePresence('valido_ate', 'create')
            ->notEmpty('valido_ate');

        return $validator;
    }

    /**
     * Returns a rules checker object that will be used for validating
     * application integrity.
     *
     * @param \Cake\ORM\RulesChecker $rules The rules object to be modified.
     * @return \Cake\ORM\RulesChecker
     */
    public function buildRules(RulesChecker $rules)
    {
        $rules->add($rules->existsIn(['user_id'], 'Users'));
        $rules->add($rules->existsIn(['role_id'], 'Roles'));
        return $rules;
    }
}

我的src / Model / Table / RolesTable.php:

<?php
namespace App\Model\Table;

use App\Model\Entity\Role;
use Cake\ORM\Query;
use Cake\ORM\RulesChecker;
use Cake\ORM\Table;
use Cake\Validation\Validator;

/**
 * Roles Model
 *
 * @property \Cake\ORM\Association\BelongsTo $Systems
 */
class RolesTable extends Table
{

    /**
     * Initialize method
     *
     * @param array $config The configuration for the Table.
     * @return void
     */
    public function initialize(array $config)
    {
        parent::initialize($config);

        $this->table('roles');
        $this->displayField('name');
        $this->primaryKey(['id', 'system_id']);

        $this->belongsTo('Systems', [
            'foreignKey' => 'system_id',
            'joinType' => 'INNER'
        ]);
    }

    /**
     * Default validation rules.
     *
     * @param \Cake\Validation\Validator $validator Validator instance.
     * @return \Cake\Validation\Validator
     */
    public function validationDefault(Validator $validator)
    {
        $validator
            ->add('id', 'valid', ['rule' => 'numeric'])
            ->allowEmpty('id', 'create');

        $validator
            ->requirePresence('name', 'create')
            ->notEmpty('name');

        $validator
            ->add('status', 'valid', ['rule' => 'numeric'])
            ->requirePresence('status', 'create')
            ->notEmpty('status');

        return $validator;
    }

    /**
     * Returns a rules checker object that will be used for validating
     * application integrity.
     *
     * @param \Cake\ORM\RulesChecker $rules The rules object to be modified.
     * @return \Cake\ORM\RulesChecker
     */
    public function buildRules(RulesChecker $rules)
    {
        $rules->add($rules->existsIn(['system_id'], 'Systems'));
        return $rules;
    }
}

我的src / Model / Table / UsersTable:

<?php 
namespace App\Model\Table;

use Cake\ORM\Table;
use Cake\Validation\Validator;
class UsersTable extends Table{
    public function validationDefault(Validator $validator){
        return $validator
            ->notEmpty('username', 'O campo nome de usuário é obrigatório')
            ->notEmpty('password', 'O campo senha é obrigatório')
            ->notEmpty('role', 'O campo perfil é obrigatório')
            ->add('role', 'inList', [
                'rule' => ['inList', ['admin', 'author']],
                'message' => 'Escolha um perfil válido'
                ]
            );

    }
}
?>

1 个答案:

答案 0 :(得分:3)

用户jose_zap在#cakephp @freenode中回答:

在RolesUsersTable.php中,初始化函数,我在$ this-&gt; belongsTo调用中添加了一个参数,包括'bindingKey'和值'id'。所以这段旧代码:

$this->belongsTo('Users', [
        'foreignKey' => 'user_id',
        'joinType' => 'INNER'
    ]);
    $this->belongsTo('Roles', [
        'foreignKey' => 'role_id',
        'joinType' => 'INNER'
    ]);

成了这个:

$this->belongsTo('Users', [
        'foreignKey' => 'user_id',
        'bindingKey' => 'id',
        'joinType' => 'INNER'
    ]);
    $this->belongsTo('Roles', [
        'foreignKey' => 'role_id',
        'bindingKey' => 'id',
        'joinType' => 'INNER'
    ]);