将表单下拉值传递给控制器​​CakePHP

时间:2013-07-26 05:14:10

标签: php cakephp

我可以在我的控制器中传递表格下拉值吗?在此之后,我可以在我的数据库表中发送值....请帮助我,我在Cakephp中的新功能这里是我的job_content.ctp

 echo'<div class="AcceptButtonFormData">'; 
    echo $this->Form->create('Job' ,array('action' => 'view')); 

    $ipr_value=array('0'=>0.0,'1'=>.1,'2'=>.2,'3'=>.3);

    echo $this->Form->input('IPR_teeth_pair12',array('type' => 'select','name'=>'drop12', 'options' => $ipr_value,'default'=>0)); 

    echo $this->Form->input('IPR_teeth_pair23',array('type' => 'select','name'=>'drop23', 'options' => $ipr_value,'default'=>0));

    echo $this->Form->input('IPR_teeth_pair34',array('type' => 'select','name'=>'drop34', 'options' => $ipr_value,'default'=>0)); 

    echo $this->Form->end();
    echo '</div>'

1 个答案:

答案 0 :(得分:1)

是的,你可以保存它。按照上面的表格,这将在视图中向您发送控制器操作

public function view() {
    // Has any form data been POSTed?
    if ($this->request->is('post')) {
        // If the form data can be validated and saved...
        if ($this->Job->save($this->request->data)) {
            // Set a session flash message and redirect.
            $this->Session->setFlash('JobSaved!');
            $this->redirect('/jobs');
        }
    }

    // If no form data, find the recipe to be edited
    // and hand it to the view.
    $this->set('jobs', $this->Job->findAll());
}
下面的

只是您可以根据需要更改的sudo代码,为了更多了解您可以访问cakephp.org