Zend_Form using subforms getValues() problem

前端 未结 4 1847
[愿得一人]
[愿得一人] 2021-01-27 01:56

I am building a form in Zend Framework 1.9 using subforms as well as Zend_JQuery being enabled on those forms. The form itself is fine and all the error checking etc is working

4条回答
  •  失恋的感觉
    2021-01-27 02:34

    Encountered the same problem. Used post instead of getValues.

    $post = $this->getRequest()->getPost();
    

    There are times when getValues does not return the same values returned by $post. Must be a getValues() bug.

提交回复
热议问题