我无法保存一些 HABTM 数据。
我的模型 'Category' 与自身有一个 HABTM 关系,称为 'SubCategory'
$this->Category->create();
$c["Category"]["display_order"] = $this->Category->getNextDisplayOrder();
$c["Category"]["title"] = $this->request->data["title"];
$c["SubCategory"]["category_id"] = $id; //The id of the parent category
$new_cat = $this->Category->saveAll($c);
这将创建我的新类别并将其保存在数据库中,但是 id 在子类别表中以错误的顺序保存。(category_id => 我刚刚创建的新猫 id,subcategory_id => parent_id)
任何想法为什么将 ID 保存在错误的列中?
这是我的 HABTM 关系
public $hasAndBelongsToMany = array(
'SubCategory' => array(
'className' => 'Category',
'joinTable' => 'categories_subcategories',
'foreignKey' => 'category_id',
'associationForeignKey' => 'subcategory_id',
'unique' => 'keepExisting',
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'finderQuery' => '',
'deleteQuery' => '',
'insertQuery' => ''
)
);