提交表单时不显示其POST数据

时间:2011-02-15 15:07:33

标签: php zend-framework zend-form

我对Zend Framework有一点经验,但我喜欢在它工作之前搞砸它。 但现在我无法解决这个问题。

我有一张表格:

<?php 
class Application_Form_Login extends Zend_Form
{

protected $notEmpty;

public function init()
{   
    // Create NotEmpty validator
    $notEmpty = new Zend_Validate_NotEmpty();

    // Configure validators for username element
    $notEmpty->setMessage('Gelieve dit veld in te vullen');

    $this->setMethod('post');

    // emailAddress
    $this->addElement('text', 'emailAddress', array(
       'filters' => array('StringTrim', 'StringToLower'),
       'required' => true,
       'validators'    => array(
            array('validator' => $notEmpty),
            ),
       'label' => 'Emailadres:'
    ));

    // password
    $this->addElement('password', 'password', array(
       'filters' => array('StringTrim'),
       'required'      => true,
       'validators'    => array(
           array('validator' => $notEmpty),
           ),
       'label' => 'Wachtwoord:'
    ));

    // submit
    $this->addElement('submit', 'submit', array(
        'ignore' => true,
        'label' => 'Inloggen'
    ));
}
}

观点:

<?= $this->form ?>

<?= $this->postdata ?>

还有一个AccountController:

<?php

class AccountController extends Zend_Controller_Action
{

public function init()
{
    echo 'data:'.$this->getRequest()->getPost('emailAddress');
    /* Initialize action controller here */
}

public function indexAction()
{
    $this->view->postdata = var_dump($this->getRequest()->getParams());

    $form = new Application_Form_Login();
    $request = $this->getRequest();

    if ($request->isPost()){
        // THIS POINT IS NEVER REACHED
    if ($form->isValid($request->getPost())){
            if ($this->_isValidLogin($form->getValues())){
                // Succes Redirect to the home page
                $this->_helper->redirector('index', 'home');
            }
            else // Not succes Redirect to account page
            {
                $this->_helper->redirector('index', 'account');
            }
        }

如你所见,我发表评论://这一点从未到过。 此控制器中有更多功能,但这些功能与我的问题无关。

让我们再解释一下。 非常奇怪的行为是,当我将数据放入我的字段时,$ this-&gt; view-&gt; postdata = var_dump($ this-&gt; getRequest() - &gt; getParams()不返回POST数据。 但是当我在登录表单字段中输入时,我会看到POST数据。当然是空的。 像这样:

array
'controller' => string 'account' (length=7)
'action' => string 'index' (length=5)
'module' => string 'default' (length=7)
'emailAddress' => string '' (length=0)
'password' => string '' (length=0)
'submit' => string 'Inloggen' (length=8)

因此,//在登录表单字段中没有数据时实际达到了这个点:-)

问题是,我做错了什么?我是否以错误的方式处理Zend_Controller_Request_Http?

如果您需要更多信息,我应该给它。

1 个答案:

答案 0 :(得分:1)

记下问题可以获得新的见解!

问题出在我自己的代码中。在某些时候,我重定向到同一页面。重定向意味着$ _POST数据也被清除。当然,这些数据不符合新的页面请求。

因此,如果有人在Zend Framework中遇到此问题,即您在提交表单时没有获得POST或GET数据,则需要检查重定向。