0

我们的小组创建了一个数据库,供顾客参加具有许多实体的活动(预订)。

我们有三个表:patron、booking、booking_patron(连接表)。

我们要在 booking_patron 的视图中创建 2 个页面(add.ctp 和 add2.ctp)。

页面 add.ctp 有一个下拉框,其中列出了预订 ID 和一个提交按钮。页面 add2.ctp 应该出现我们之前选择的预订 ID(在 add.ctp 中)。同样在 add2.ctp 中,我们确实创建了一个功能,用户可以创建一个顾客并将该顾客分配给预订 ID。

BookingsPatronsController.php

public function add() {
    $bookings = $this->BookingsPatron->Booking->find('list');
    $this->set(compact('bookings', 'patrons'));
}
public function add2($booking_id = null) {

    $patrons = $this->BookingsPatron->Patron->find('list');
    $bookings = $this->BookingsPatron->Booking->find('list');
    $this->set(compact('bookings', 'patrons'));
    if ($this->request->is('post')) {
        $this->BookingsPatron->Patron->create();

        if ($this->BookingsPatron->Patron->save($this->request->data)) {
            $this->Session->setFlash("Sign In Successful");

            $this->BookingsPatron->create();

            $this->Session->setFlash(__('Well.... done'));

            $this->redirect(array('action' => 'add3'));
        } else {
            $this->Session->setFlash(__('We can not add your information. Please, try again.'));
        }
    }
}

问题是:我们不知道如何从 add.ctp 获取预订 ID 到 add2.ctp。目前,我们使用 add2.ctp 中列出预订 ID 的下拉框来选择预订;我们想将其更改为显示来自 add.ctp 的预订 ID 的静态文本字段。

我们还有一个可以在 add2.ctp 中创建新赞助人的功能。我们想将新读者分配给 add.ctp 中选择的预订 ID

添加.ctp

<?php echo $this->Form->input('Booking.booking_id');?>
<?php echo $this->Html->link(__('Create'), array('action' => 'add3')); ?>

add2.ctp

<?php echo $this->Form->create('BookingsPatron'); ?>
<fieldset>
<?php echo $this->Form->input('Booking.booking_id');?>
<table cellpadding="3" cellspacing="3">
<tr>
    <td class="heading">Name: </td>
    <td><?php echo $this->Form->input('Patron.patrons_name', array('label' => '', 'div' => 'formLabel'));?></td>
    <td></td><td></td>
    <td class="heading">E-mail: </td>
    <td><?php echo $this->Form->input('Patron.patrons_email', array('label' => '', 'div' => 'formLabel'));?></td>
</tr>
<tr>
    <td class="heading">Age: </td>
    <td><?php echo $this->Form->input('Patron.patrons_age', array('label' => '', 'div' => 'formLabel'));?></td>
    <td></td><td></td>        
    <td class="heading">Company: </td>
    <td><?php echo $this->Form->input('Patron.patrons_company', array('label' => '', 'div' => 'formLabel'));?></td>
</tr>
<tr>
    <td class="heading">Postcode: </td>
    <td><?php echo $this->Form->input('Patron.patrons_postcode', array('label' => '', 'div' => 'formLabel'));?></td>
    <td></td><td></td>        
    <td class="heading">Gender: </td>
    <td><?php echo $this->Form->input('Patron.patrons_gender', array('label' => '', 'div' => 'formLabel', 'type' => 'select', 'options' => array('Male' => 'Male', 'Female' => 'Female')));?></td>
</tr>
<tr>
    <td colspan="2">PH: 1300 7 34726</td>
    <td colspan="3"></td>
    <td><?php  echo $this->Form->submit('Submit', array('class' => 'classSubmitButton', 'title' => 'Sbumit')); ?></td>
</tr>
</table>

</fieldset>
4

1 回答 1

0

这应该工作

public function add() {
    if ($this->request->is('post')) {
         $this->Session->write('booking_id', $this->request->data['Booking']['booking_id']);
         $this->redirect(array('action' => 'add2')); // Line added
    }
    $bookings = $this->BookingsPatron->Booking->find('list'); 
    $this->set(compact('bookings', 'patrons'));
}

并检索 ID 在您的 add2() 函数中使用

$booking_id = $this->Session->read('booking_id');

更新

编辑 add.ctp -- 这需要是一个表单,而不仅仅是一个链接,否则你不提交预订 ID

<?php 
    echo $this->Form->create('Booking');
    echo $this->Form->input('Booking.booking_id');
    echo $this->Form->end(__('Create'));
?>
于 2013-05-21T11:28:56.893 回答