我做了很多研究,试图应用一些不同的例子,但似乎没有什么真正有效。
所以我有以下 3 个模型:客户、项目和事件。客户有很多项目,项目有很多事件。
在创建事件时,我希望用户从下拉列表中选择一个客户,然后应该向用户提供属于所选客户的项目列表。我最接近的是以下。我没有使用 AJAX 的经验,所以这确实是一个难以驾驭的坚果。
项目控制器中的操作:
public function getbycustomer(){
$customer_id = $this->request->data['Event']['customer_id'];
$projects = $this->Project->find('list', array('conditions'=>array('Project.customer_id' => $customer_id), 'recursive' => -1));
$this->set('projects', $projects);
$this->layout = 'ajax';
}
此操作的视图如下:
<?php foreach ($projects as $key => $value): ?>
<option value="<?php echo $key; ?>"><?php echo $value; ?></option>
<?php endforeach; ?>
以下是添加事件的视图片段:
echo $this->Form->input('customer_id');
echo $this->Form->input('project_id');
//form continues and at the end of a page there is the AJAX call
$this->Js->get('#EventCustomerId')->event('change',
$this->Js->request(array(
'controller'=>'projects',
'action'=>'getbycustomer'
), array(
'update'=>'#EventProjectId',
'async' => true,
'method' => 'post',
'dataExpression'=>true,
'data'=> $this->Js->serializeForm(array(
'isForm' => true,
'inline' => true
))
))
);
非常感谢任何帮助,因为我什至不知道调试它的正确方法,所以我可以提供更多有价值的信息。