0

我有一个带有 2 个选择框的 ZF 表格。两者都应该从 2 个数据库表中填充。首次呈现表单时,将填充第一个选择框。(所以这已经完成并且工作正常)然后我想通过在用户选择一个值时获取第一个选择框的值来填充第二个选择框并将其传递给选择 SQL 以获取第二组数据。

而且我不希望刷新页面。(所以 ajax/javascript/jquery)

我有以下观点(.phtml)

<script type="text/javascript">

$(document).ready(function(){
$('#make').change(function($e){
    $e.preventDefault();
     var href= "index/load";
     var data = 'make_id='+$('#make').val();
     $.ajax({ type: "POST",
           url: href,
          data: data,
          success: function(response){
            location.href = 'index/load';
         }
     });
});
});

</script>

但我无法在我的控制器操作中使用以下方法访问从 ajax 帖子传递的值

$this->getRequest()->getParams('make_id');
4

2 回答 2

0

ajax 请求的data一部分需要这样的JSON对象{make_id: something},因此您必须以这种格式发送参数:

$(document).ready(function(){
  $('#make').change(function($e){
  $e.preventDefault();
   var href= "index/load";
   var data = $('#make').val();
   $.ajax({ type: "POST",
     url: href,
     data: {make_id: data},
     success: function(response){
     location.href = 'index/load';
   }
 });

});

于 2013-02-27T11:36:06.803 回答
0

好的,找到了一种简单的方法,在我看来 phtml 我有以下内容,

 <body>
 <?php
     $this->form->setAction($this->url());
     echo $this->form;

  ?>

   <script type="text/javascript">

   $(document).ready(function(){
       $('#select1').change(function(){
           $('#Myform').submit();
           return false;
       });
   });

   </script>
</body>

在我的控制器动作中,我有

public function viewAction()
{

        $form= new Application_Form_Myform();
        $selectbox1 = $form->getElement('select1');
        $selectbox1->setMultiOptions($this->populateselectbox1()); //This function fetch data from the db and make an array
        if ($this->getRequest()->getPost('select1')!=""){
            $selectbox2 = $form->getElement('select2');
            $selected = $this->getRequest()->getPost('select1');
            $select->setMultiOptions($this->populatselectbox2($selected)); //This function fetch data from the db and make an array
            $selectbox1->setValue($selected);
        }
        $this->view->form = $form;
    }
于 2013-02-27T12:50:04.397 回答