私は2つのテーブルと結合テーブルを持っています。私は$ hasAndBelongsToManyを使ってみましたが、仕事がなかったので、代わりに私は結合テーブルのモデルを作成して使用しました。cakephp HABTM association saveAll?
User hasMany Membership
Membership belongsTo User, Club
Club hasMany Membership.
私は両方のテーブルに保存するフォームを持っています。
function dashboard_add(){
$user = $this->Session->read('User');
$register = false;
if (!empty($this->data)) {
if($this->Club->saveAll($this->data)){
$this->Session->setFlash(__('You have registered your club. You will be contacted soon!', true), 'default', array('class' => 'success'));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('There was a problem with your registration. Please, try again.', true), 'default', array('class' => 'warning'));
}
}
if (empty($this->data)) {
$this->data = $this->User->read(null, $user['User']['id']);
}
$this->set(compact('register'));
}
Userモデルが
var $hasMany = array(
'Membership' => array(
'className' => 'Membership',
'foreignKey' => 'user_id'
)
);
メンバーシップモデルが
var $belongsTo = array('User','Membership');
を持っていたクラブのモデルは、私はすべてのエラーを得ることはありません
var $hasMany = array(
'Membership' => array(
'className' => 'Membership',
'foreignKey' => 'club_id'
),
'Upload' => array(
'className' => 'Upload',
'foreignKey' => 'club_id'
)
);
を持っています。クラブテーブルが作成されますが、メンバーシップとユーザーテーブルは挿入/更新されません。
更新:デバッグ($ this-> Club-> save($ this-> data));
Array
(
[User] => Array
(
[id] => 1
[first_name] => this
[last_name] => that
[company_name] => other
[city] => this
[state] => that
[zip] => other
[telephone] => that
[email_address] => this
)
[Club] => Array
(
[address] => fvdfvx
[title] => xcvxcv
[category] => xcvxcv
[modified] => 2012-05-03 06:31:12
)
)
私はドキュメントを読むでしょう。 saveAllの直後に$ this-> data配列で質問を更新しました。 – madphp
修正。ドキュメントのようにsave()に変更しました。 – madphp