-3

我对 cakephp 非常陌生。我创建了一个带有输入控件的简单表单,如下所示:

  <?php
    echo $this->Form->create();
    echo $this->Form->input('name');
    echo $this->Form->input('address', array('rows' => '3'));
    echo $this->Form->input('aaa', array(
        'type'      => 'date',
        'label'     => 'select',
        'before'    => '--before--',
        'after'     => '--after--',
        'between'   => 'Date',
        'separator' => '****',
        'empty'     => '--select--'
    ));
    echo $this->Form->checkbox('subjects', array('value' => 'Java'));
?>
java
<?php
    echo $this->Form->input('gen', array(
        'type' => 'radio',
        'options' => array('m', 'f')
    ));
    echo $this->Form->input('file', array('type' => 'file'));
    echo $this->Form->input('listbox', array('options' => array(1,2,3,4,5), 'multiple' => 'multiple'));
    echo $this->Form->end('Submit');
?>

我希望将在这些组件中输入的值打印在另一页上。我怎么做?我试图在会话(这似乎不合适)的帮助下做到这一点,如下所示:

public function contactus() {
        if ($this->request->data!=null) {
            $var=$this->request->data;
            $this -> Session -> write('myvar', $this->request->data);
            //$this->set($var, $this->request->data);
            $this->redirect(array('action' => 'contactview'));
        }
    }

但它输出数组,我不能使用会话来存储每个组件的值。我该如何解决这个问题?

4

2 回答 2

1

根据 cakephp 书(表格:http ://book.cakephp.org/1.3/view/1384/Creating-Forms )

   <?php 
    echo $this->Form->create(null, 
  array('url' => array('controller' => 'recipes', 'action' => 'add'))); 
    ?>

     //Output:
    <form method="post" action="/recipes/add">

因此,只需更改您的create功能并添加url选项。

于 2012-08-11T11:42:18.693 回答
0

我没有使用会话,而是使用this->data并且它能够解决我的问题。

于 2012-08-12T11:45:13.890 回答