0

我在为我正在使用的一些代码保存我的 HABTM 关系时遇到了一些问题。我有Podcasts并且Categories处于 HABTM 关系中。下面的代码和问题解释

模型/播客.php

class Podcast extends AppModel{
    public $hasMany = 'Episode';
    public $hasAndBelongsToMany = array(
        'Category' =>
            array(
                'className' => 'Category',
                'joinTable' => 'categories_podcasts',
                'foreignKey' => 'podcast_id',
                'associationForeignKey' => 'category_id',
                'unique' => false
            )
        );
}

型号/类别.php

class Category extends AppModel{
    public $hasAndBelongsToMany = array(
        'Podcast' =>
            array(
                'className' => 'Podcast',
                'joinTable' => 'categories_podcasts',
                'foreignKey' => 'category_id',
                'associationForeignKey' => 'podcast_id',
                'unique' => false
            )
        );
}

这就是我传入的数组的saveAll()样子

Array
(
    [Podcast] => Array
        (
            [name] => Mohr Stories - FakeMustache.com
            [description] => Join your host Jay Mohr and a rotating cast of his hilarious friends as they regale you with tales and conversation covering every topic imaginable. You haven't heard the half of it until you've heard... Mohr Stories.
            [website] => http://www.FakeMustache.com
        )

    [Category] => Array
    (
        [0] => 1
        [1] => 2
    )

)

效果很好 - 添加了播客并更新了连接表,但我的印象是我的Category数组可能如下所示:

 [Category] => Array
        (
            [0] => Array
                (
                    [name] => Test
                )

            [1] => Array
                (
                    [name] => Test2
                )

        )

这将保存新类别“Test”和“Test2”,然后使用新添加的 id 更新连接表。这是不可能的,还是我在这里遗漏了一些图片?

4

1 回答 1

0

您确实可以这样做,但是使用另一种数据格式,其中每条记录都包含相关数据,如下面的代码允许保存 2 条记录:

array{
    array{
        'Podcast' => array {
             'id' => 25
         },
         'Category' => array {
             'name' => 'Test'
         }
    }
    array{
         'Podcast' => array {
             'id' => 25
         },
         'Category' => array {
             'name' => 'Test2'
         }
    }
}

将此数组传递给您的 Podcast/Category 模型之一的 saveAll 方法。

$this->Podcast->saveAll($myData);

但请注意,由于您没有为类别提供任何 ID,因此即使存在同名的现有类别,它们也会被创建。

如果id 为 25 的 Podcast 不存在,它将被创建

于 2014-01-14T10:19:05.573 回答