0

我被困在 Cakephp 插入中,这就是我所拥有的

-订购HABTM地址

-地址模型

这是我在地址模型中的关联:

public $hasAndBelongsToMany = array(
    'Address' => array(
        'className' => 'Address',
        'joinTable' => 'address_customers',
        'foreignKey' => 'customer_id',
        'associationForeignKey' => 'address_id'  
    )
);

我想用一个新地址保存/插入一个新客户所以,我认为下面的数组可以工作:

array(
'Customer' => array(
    'nom' => 'Khiami',
    'prenom' => 'TEST',
    'tel' => '0945454545',
    'ptel' => '',
    'commentaire' => '',
    'email' => '',
    'anniversaire' => array(
        'day' => '08',
        'month' => '12',
        'year' => '2012'
    ),
    'createdFrom' => 's'
),
'Address' => array(
    (int) 0 => array(
        'adresse' => 'ADDR TEST',
        'cp_id' => '1',
        'etage' => '',
        'residence' => '',
        'batiment' => '',
        'appartement' => '',
        'type' => 'l',
        'code_sonette' => '',
        'code_portail' => '',
        'code_batiment' => '',
        'code_asc' => ''
    )
)
)

唯一有效的是我先保存客户,然后使用下面的数组:

array(
(int) 0 => array(
    'Customer' => array(
        'customer_id' => '394'
    ),
    'Address' => array(
        'adresse' => 'ADDR TEST',
        'cp_id' => '1',
        'etage' => '',
        'residence' => '',
        'batiment' => '',
        'appartement' => '',
        'type' => 'l',
        'code_sonette' => '',
        'code_portail' => '',
        'code_batiment' => '',
        'code_asc' => ''
    )
)
)

但是,我仍然没有填写关联表!它只在地址表中添加一个条目。

4

2 回答 2

0

由于您在 HABTM 关系中指定了可连接,我怀疑它是一个命名约定问题。

您是保存在 Address 还是 Customer 模型中?因为如果你从地址模型中调用它,我想应该已经有一个客户,在这种情况下你只需要设置:

$this->request->data['Customer']['Customer'] = $customer_id; 

并保存地址数据,它应该在表中创建HABTM关联。

于 2012-12-08T13:42:14.303 回答
0

是的,您应该在两者中都指定它:

地址型号:

public $hasAndBelongsToMany = array(
   'Customer' => array(
       'className' => 'Customer',
       'joinTable' => 'address_customers',
       'foreignKey' => 'address_id',
       'associationForeignKey' => 'customer_id'  
));

客户型号:

 public $hasAndBelongsToMany = array(
   'Address' => array(
      'className' => 'Address',
      'joinTable' => 'address_customers',
      'foreignKey' => 'customer_id',
      'associationForeignKey' => 'address_id'  
));
于 2012-12-08T14:57:29.993 回答