相同表的多个HABTM关系 - Cake 3

时间:2015-08-31 20:17:12

标签: cakephp cakephp-3.0

我的cakephp 3应用程序中有2个表 - 项目颜色。一个Item也可以有多个Primary Colors和Secondary Colors。 所以,我创建了2个联结表 - items_primary_colors items_secondary_colors 。 两者都具有相同的架构 - item_id color_id (加入Items和Colors表) 我不知道如何在TableModel中指定这些关系以及如何格式化表单数据以保存两种类型的颜色。 我的 ItemTable.php 代码有 -

$this->belongsToMany('Colors', [
    'foreignKey' => 'item_id',
    'targetForeignKey' => 'color_id',
    'joinTable' => 'items_primary_colors'
]);
$this->belongsToMany('Colors', [
    'foreignKey' => 'item_id',
    'targetForeignKey' => 'color_id',
    'joinTable' => 'items_secondary_colors'
]);

并且,我正在以这种方式格式化表单数据 -

[primary_colors] => Array
(
    [_ids] => Array
    (
        [0] => 2
    )
)

[secondary_colors] => Array
(
    [_ids] => Array
    (
        [0] => 3
    )

)

它不起作用。我该怎么处理这个?

1 个答案:

答案 0 :(得分:5)

您需要为belongsToMany关系指定不同的名称。尝试

$this->belongsToMany('PrimaryColors', [
    'className' => 'Colors',
    'foreignKey' => 'item_id',
    'targetForeignKey' => 'color_id',
    'joinTable' => 'items_primary_colors'
]);
$this->belongsToMany('SecondaryColors', [
    'className' => 'Colors',
    'foreignKey' => 'item_id',
    'targetForeignKey' => 'color_id',
    'joinTable' => 'items_secondary_colors'
]);