0

私の最初の CakePHP 'プロジェクト' に取り組んでいます。$this->request->is('post') を追加すると、CakePHP (2.3) が送信時に検証メッセージを正しく表示するのに問題があります。削除すると、検証メッセージが表示されます (良い!) が、ページの読み込み時に検証されて表示されます.. (悪い!)。

編集:明確にするために:問題は、検証エラーが自動的に表示されないことです。

/app/view/フィードバック/add.ctp

echo $this->Form->create('Feedback');
echo $this->Form->input('Feedback.browser', array('type' => 'hidden', 'value' => $_SERVER['HTTP_USER_AGENT']));
echo $this->Form->input('Feedback.ip', array('type' => 'hidden', 'value' => $_SERVER['REMOTE_ADDR']));
echo $this->Form->input('Feedback.suggestie', array('rows' => '3', 'label' => false));
echo $this->Form->end('Send');

/app/Controller/FeedbackController.php

public function add($site = null, $page = null)
{
    if( $this->request->is('post') )
    {
        if( $this->Feedback->save( $this->request->data ) )
        {
            $subject = "Feedback ontvangen voor ".$this->data['Feedback']['site'];
            $mailBody = "Er is feedback ontvangen voor ".$this->data['Feedback']['site'] .":<br/>
                        <br/>
                        Pagina: ".$this->data['Feedback']['page']."<br/>
                        IP: ".$this->data['Feedback']['ip']."<br/>
                        Browser: ".$this->data['Feedback']['browser']."<br/>
                        <br/>
                        Pagina beoordeling: ".$this->data['Feedback']['rating']."<br/>
                        <br/>";
            if( $this->data['Feedback']['suggestie'] ) {
                $mailBody .= "Suggestie:<br/>"
                          .$this->data['Feedback']['suggestie']."<br/>";
            }

            if( $this->data['Feedback']['foutmelding'] ) {
                $mailBody .= "Foutmelding:<br/>"
                          .$this->data['Feedback']['foutmelding']."<br/>
                          <br/>
                          Contact voor foutmelding: ".$this->data['Feedback']['foutmeldingctc'];
            }

            $email = new CakeEmail();
            $email->emailFormat( 'html' );
            $email->from( array( 'xxxx' => 'High Profile Locaties Feedback' ) );
            $email->to( 'xxxx' );
            $email->subject( $subject );
            $email->send( $mailBody );

            //naar bedank pagina
            $this->redirect( '/pages/bedankt' );
        }
    }
}
4

1 に答える 1

-1

empty($ this-> request-> data)を使用して、フォームが投稿されているかどうかをテストします。

if (!empty($this->request->data)) {

    // form posted

    if ($this->Feedback->save($this->request->data)) {
        // save successful
    }
    else {
        // errors happened
    }

}
else {

    // form not posted yet

}
于 2013-02-13T14:59:52.183 に答える