cakephp传递ajax中的下拉值

时间:2012-02-29 11:47:16

标签: php cakephp

我设法在cakephp中获取ajax函数,当单击下拉列表以填充另一个下拉列表时调用该函数。我无法得到的一个区域是传递第一个下拉列表的id值,所以我可以进行查找。

我希望传递公司ID,以便我能找到相关的员工。

感谢。

查看:

<?php
$this->Js->get('#MonthlyReturnCompanyId')->event('change',
$this->Js->request(
    array(
        'controller'=>'MonthlyReturns',
        'action'=>'getemployees',
    ),
    array(
        'update'=>'#test',
        'async' => true,
        'method' => 'post',
        'dataExpression'=>true,
        'data'=> $this->Js->serializeForm(array(
            'isForm' => false,
            'inline' => true
        ))
    )
)
);
?>



        echo $this->Form->input('company_id' , array('empty' => true));

0 个答案:

没有答案