1

我需要一些帮助。我有这个表单组:这是视图:

<?php echo form_open('admin/posts/post/'.$post->id); ?>
// other fields here...
<div class="form-group">
                <label for="" class="col-sm-2">Visible</label>

                <div class="col-sm-10">
                    <div class="onoffswitch">
                        <?php  
                            $visible = ($post->visible) ? $post->visible : $this->input->post('visible');
                            $visible_data = array(
                                'class' => 'onoffswitch-checkbox', 
                                'id' => 'visible',
                                'checked' => ($visible == '1') ? true : false,
                                'name' => 'visible',
                                'value' => ($post->visible) ? $post->visible : $this->input->post('visible'),
                                );
                        ?>
                        <?php echo form_checkbox($visible_data); ?>
                        <label class="onoffswitch-label" for="visible">
                            <div class="onoffswitch-inner"></div>
                            <div class="onoffswitch-switch"></div>
                        </label>
                    </div> 
                </div>
            </div>

// more fields ...
<?php echo form_close(); ?>

这是控制器

public function post($id){
        $this->data['post'] = $this->post_model->get($id);

        $this->form_validation->set_rules($this->post_model->rules);
        if ($this->form_validation->run() === true) {

              var_dump($this->input->post('visible')); //not getting anything from the visible field

             // store data in database and redirect
             $this->post_model->save($id);
        }

        // load the view
        $this->load->view('admin/post/edit');
    }

基本上,这可以用作开/关开关按钮。问题是当我单击提交按钮时,它不会将字段 ( $this->input->post('visible')) 的 $_POST 数据发送到我的模型以便将其存储在数据库中。

有什么想法有什么问题,应该如何解决?

4

1 回答 1

1

这与 Codeigniter 无关,它只是浏览器的工作方式,如果未选中复选框,则不会将 POST 数据发送到服务器。

因此,您可以在控制器中签入$this->input->post('visible')(如果复选框为 unchecheck 并且您在value.

false或者您可以做一个小技巧,并使用与复选框之前相同的名称和值放置一个隐藏的输入。

在您的示例中,您应该放置value="1"复选框并在<?=form_hidden('visible', 0)?>复选框之前放置一个。

于 2014-04-03T07:31:30.597 回答