0

我正在使用 CakePHP 2.2。我正在采用一种动态更新我从中获得的选择框的方法:http: //www.willis-owen.co.uk/2011/11/dynamic-select-box-with-cakephp-2-0/#comment -10773可以正常工作。当用户从另一个选择框中选择“区域”时,它会更新“酒店”选择框的内容。

在同一个表单上,当用户从选择框中选择“酒店”时,我想使用“酒店”模型中的地址详细信息自动填充多个“团队”字段。

然后用户可以修改地址......所有这些都在用户单击“团队”添加视图上的提交之前。

在 Team\add.ctp 视图中,我有以下代码:

    echo "<div id='address'>";
    echo $this->Form->input('address_1');
    echo $this->Form->input('address_2');
    echo $this->Form->input('address_3');
    echo $this->Form->input('city');
    echo $this->Form->input('postcode');
    echo $this->Form->input('country');
    echo "</div>";

...

    $this->Js->get('#TeamHotelId')->event('change',
        $this->Js->request(array(
            'controller'=>'hotels',
            'action'=>'getAddress'
            ), array(
            'update'=> '#address',
            'async' => true,
            'method' => 'post',
            'dataExpression' => true,
            'data'=> $this->Js->serializeForm(array(
                'isForm' => true,
                'inline' => true))
                        )
        )
    );

在我的 HotelsController.php 中,我有:

public function getAddress() {
    $hotel_id = $this->request->data['Team']['hotel_id'];
    CakeLog::write('debug', print_r($hotel_id, true));
    $address = $this->Hotel->find('first', array(
            'recursive' => -1,
            'fields' => array('hotel.address_1', 'hotel.address_2', 'hotel.address_3', 'hotel.city', 'hotel.postcode', 'hotel.country'),
            'conditions' => array('Hotel.id' => $hotel_id)
            ));
    CakeLog::write('debug', print_r($address, true));
    $this->set('hotels', $address);
    $this->set(compact('address'));
    $this->layout = 'ajax';
}   

酒店\get_address.ctp:

    <?php 
        echo $this->Form->input('Team.address_1', array('value'=> $address['Hotel']['address_1']));
        echo $this->Form->input('Team.address_2', array('value'=> $address['Hotel']['address_2']));
        echo $this->Form->input('Team.address_3', array('value'=> $address['Hotel']['address_3']));
        echo $this->Form->input('Team.city', array('value'=> $address['Hotel']['city']));
        echo $this->Form->input('Team.postcode', array('value'=> $address['Hotel']['postcode']));
        echo $this->Form->input('Team.country', array('value'=> $address['Hotel']['country'])); ?>

这现在可以工作并且代码已经更新。

4

1 回答 1

0

你不能那样做,因为你正在努力完成。但是,有一种方法可以根据需要进行更新,方法是使用 ajax 从下拉列表中传递一个 id,并根据该 id 填充所有其他字段。请确保'update'=>#id您应该将包含您希望在 ajax 请求中显示的页面上显示的所有字段的 div 的 div id 放入其中。

注意:请按照您提供的 Richard 链接进行操作,即 www.willis-owen.co.uk,它肯定会对您正在尝试做的事情有所帮助。

于 2013-01-18T16:29:05.633 回答