我有一个 products 表和一个 products_relateds 表。这包含对产品的 2 个引用(product_id 和 related_id)
我正在尝试在我的产品模型中为此建立一个 HABTM 关系
public $hasAndBelongsToMany = array(
'Related' => array(
'className' => 'Product',
'joinTable' => 'products_relateds',
'foreignKey' => 'product_id',
'associationForeignKey' => 'related_id',
'unique' => 'keepExisting',
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'finderQuery' => '',
'deleteQuery' => '',
'insertQuery' => ''
)
);
这看起来对吗?我需要创建相关模型吗?我没有收到任何错误,并且当这种关系存在时,查看产品页面将不会加载