0

我有两个模型:EventVenue. 一个 Event 属于一个 Venue,一个 Venue 可以有多个 Event。我正在尝试使用一个表单同时保存一个事件和场地。这是我到目前为止在我的控制器中所拥有的:

public function add() {
    if ($this->request->is('post')) {
        if ($this->Event->saveAll($this->request->data)) {
            $this->Session->setFlash('Event successfully saved');
        }
    }
}

这是我的表格:

<?php
    echo $this->Form->create('Event');
    echo $this->Form->inputs(array(
        'legend' => 'Event Details',
        'Event.date',
        'Event.title'
    ));
    echo $this->Form->inputs(array(
        'legend' => 'Venue Details',
        'Venue.name',
        'Venue.street_address',
        'Venue.locality' => array('label' => 'Town/city'),
        'Venue.postal_code'
    ));
    echo $this->Form->end('Save Event');
?>

很简单。

现在,EventVenue记录都已创建。但是venue_id在我的events表中是零;它没有设置为新创建的 Venue 的 ID。我该如何纠正这个问题?我敢肯定这很简单!

编辑:我的Event模型:

<?php
class Event extends AppModel {

    public $name = 'Event';
    public $actsAs = array(
        'Containable'
    );
    public $belongsTo = array(
        'Venue'
    );
}

我的Venue模型:

<?php
class Venue extends AppModel {
    public $name = 'Venue';
    public $hasMany = array(
        'Event'
    );
}
4

1 回答 1

0

似乎我需要array('deep' => true)在使用该saveAll()方法时使用。

if ($this->Event->saveAll($this->request->data, array('deep' => true))) {
    $this->Session->setFlash('Event successfully saved');
}

感谢所有仍然发表评论的人。

于 2012-10-23T14:37:18.793 回答