0

我无法保存一些 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' => ''
        )
    );
4

1 回答 1

0

我被你的帖子弄糊涂了。

如果

$c["SubCategory"]["category_id"] = $id; //The id of the parent category

这应该是刚刚创建的类别的 id 还是父类别?您在帖子中说了两件事。

(category_id => 我刚刚创建的新猫 id,subcategory_id => parent_id)

无论哪种方式,如果您希望 id 是您刚刚创建的那个,则将该行更改为

$c["SubCategory"]["category_id"] = $this->Category->id;

或者

$c["SubCategory"]["category_id"] = $this->Category->getLastInsertID();
于 2013-05-08T16:00:38.380 回答