我的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
)
)
它不起作用。我该怎么处理这个?
答案 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'
]);