CakePHP Ajax: обновить список с изменением в связанном списке
Я работаю над CakePHP 2.7.8. Я хочу обновить связанный список с изменением в списке, используя Ajax.
у меня есть customers
стол и customer_addresses
таблица в базе данных и customers
а также customerAddress
модели в проекте.
Есть еще один контроллер serviceRequests
где я должен выбрать customer
и адрес выбранного клиента из выпадающего списка, созданного CakePHP из базы данных.
Что я сделал, я добавил функцию getCustomerAddress
в serviceRequests
контроллер
public function getCustomerAddress(){
$customer_id = $this->request->data['Post']['customer_id'];
$customer_address = $this->CustomerAddress->find('list',array(
'condition' => array('CustomerAddress.customer_id' => $customer_id),
'recursive' => -1
));
$this->set('customerAddresses', $customer_address);
$this->layout = 'ajax';
}
чтобы отобразить полученные данные, у меня есть вид get_customer_address.ctp
<?php
foreach ($customerAddresses as $key => $value): ?>
<option value="<?php echo $key;?>"><?php echo $value; ?></option>
<?php endforeach; ?>
в add.ctp
вид serviceRequests
контроллер для add
функции, я добавил следующий скрипт в конце.
<div class="serviceRequests form">
<?php echo $this->Form->create('ServiceRequest'); ?>
<fieldset>
<legend><?php echo __('Add Service Request'); ?></legend>
<?php
echo $this->Form->input('customer_id');
echo $this->Form->input('customer_address_id');
echo $this->Form->input('status');
?>
</fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<?php
$this->Js->get('#ServiceRequestCustomerId')->event('change',
$this->Js->request(array(
'controller' => 'serviceRequests',
'action' => 'getCustomerAddress'
), array(
'update' => '#ServiceRequestCustomerAddressId',
'async' => true,
'method' => 'post',
'dataExpression' => true,
'data' => $this->Js->serializeForm(array(
'isForm' => true,
'inline' => true
))
))
);
?>
и оказывать Js
Я добавил следующий код к последнему из default.ctp
<!-- script for layout -->
<?php echo $scripts_for_layout; ?>
<!-- Js writeBuffer -->
<?php
if(class_exists('JsHelper') && method_exists($this->Js, 'writeBuffer')) echo $this->Js->writeBuffer ();
// writes cached scripts
?>
Но при доступе localhost/serviceRequests/add
вызов ajax не работает, и в списке отображаются все имя клиента и все адреса клиента.
1 ответ
Это пример того, как реализовать цепочечные селекции с помощью торта http://sandbox.dereuromark.de/sandbox/ajax_examples/chained_dropdowns - соответствующая статья для этого примера находится здесь http://www.dereuromark.de/2014/01/09/ajax-and-cakephp/