我想做一个$this->find
使用 ajax 请求的 id。
我有 2 个选择,我想要,如果我选择一个选项,它会返回一个与此 ID 相关的选择。
这是我的功能:
if($this->request->is('ajax')) {
$this->layout = false;
$id = $this->request->data['select'];
$this->set('filial',$this->Branch->find('list', array('conditions' => array('company_id' => $id ))));
}
这是我的ajax:
$(document).ready(function() {
$("#AttorneyEmpresa").change(function(){
$.ajax({
data: { select: $('#AttorneyEmpresa').val()},
sucess: function(data) {
},
complete: function() {
alert(data);
}
})
})
});
我想执行操作,获取查找的数据并填充选择。我该怎么做?