首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Codeigniter-HMVC表单验证复选框数组回调验证无效

Codeigniter-HMVC表单验证复选框数组回调验证无效
EN

Stack Overflow用户
提问于 2015-07-07 13:29:53
回答 2查看 1.1K关注 0票数 0

“代码点火器表单验证”复选框验证无效。我一直在做一个项目,在这个项目中我可以在我的视图中选择不同的复选框。当我提交表单时,如果所有框都是空的,那么应该抛出回调消息

但出于某种原因

<input type="checkbox" name="tables[]" value="<?php echo $table;?>" />

我已经查看了堆栈溢出网站和其他,并尝试了很多,但没有一些工作。

问题,什么是使我的回调函数工作的最佳解决方案,所以如果所有复选框都是空的,那么就会抛出我的表单验证消息。

对于任何想要var转储结果的人

代码语言:javascript
复制
array(3) { 
    [0]=> string(4) "user" 
    [1]=> string(10) "user_group" 
    [2]=> string(16) "user_join_status" 
} 

控制器

代码语言:javascript
复制
<?php

class Backup extends MX_Controller {

    public function __construct() {
        parent::__construct();
        $this->load->library('admin/users');
        $this->load->model('admin/tool/model_tool_backup');
    }

    public function index() {

        $data['tables'] = $this->model_tool_backup->get_tables();

        $this->load->library('form_validation');

        $this->form_validation->set_rules('tables[]', 'Table', 'callback_check');

        // $this from library MY_Form_Validation for HMVC

        if ($this->form_validation->run($this) == FALSE) {

            $data['sidebar'] = Modules::run('admin/common/sidebar/index');
            $data['navbar'] = Modules::run('admin/common/navbar/index');
            $data['header'] = Modules::run('admin/common/header/index');
            $data['footer'] = Modules::run('admin/common/footer/index');

            $this->load->view('tool/backup_view', $data);

        } else {

            var_dump($this->input->post('tables[]'));

            //$this->output->set_header('Pragma: public');
            //$this->output->set_header('Expires: 0');
            //$this->output->set_header('Content-Description: File Transfer');
            //$this->output->set_header('Content-Type: application/octet-stream');
            //$this->output->set_header('Content-Disposition: attachment; filename=' . $this->db->database . '_' . date('Y-m-d_H-i-s', time()) . '_backup.sql');
            //$this->output->set_header('Content-Transfer-Encoding: binary');

            //$this->output->append_output($this->backup_codeigniter($this->input->post('backup[]')));

        }
    }

    public function check($post_tables) {
        $post_tables = $this->input->post('tables[]');

        if (!isset($post_tables)) {
            $this->form_validation->set_message('check', 'You Must Select At Least One Table To Do Back Up!');
            return FALSE;
        } else {
            return TRUE;
        }
    }

    public function backup_codeigniter($tables) {
        $this->load->dbutil();

        $prefs = array(
            'tables' => $tables, 
            'ignore' => array(),
            'format' => 'txt',
            'filename' => $this->db->database . '_' . date('Y-m-d_H-i-s', time()) . '_backup.sql',
            'add_drop' => TRUE,
            'add_insert' => TRUE,
            'newline' => "\n" 
        );

        return $this->dbutil->backup($prefs);
    }
}

视图

代码语言:javascript
复制
<?php echo form_open_multipart('admin/tool/backup', array('class' => 'form-horizontal')); ?>
<?php echo validation_errors('<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <button type="button" class="close" data-dismiss="alert">&times;</button>', '</div>'); ?>
<div class="form-group">
    <label class="col-sm-2 control-label">Backup</label>
    <div class="col-sm-10">
        <div class="well well-sm" style="height: 150px; overflow: auto;">
            <?php foreach ($tables as $table) { ?>
                <div class="checkbox">
                    <label>
                        <input type="checkbox" name="tables[]" value="<?php echo $table; ?>"/>
                        <?php echo $table; ?></label>
                </div>
            <?php } ?>
        </div>
        <a onclick="$(this).parent().find(':checkbox').prop('checked', true);">Select All</a> /
        <a onclick="$(this).parent().find(':checkbox').prop('checked', false);">Unselect All</a>
    </div>
</div>

<div class="button-group">
    <div class="form-group text-right">
        <button type="submit" class="btn btn-lg btn-inverse">Click to Backup Database</button>
    </div>
</div>
<?php echo form_close(); ?>

HMVC的MY_Form_Validation库--为什么需要在$this->form_validation->run($this)中使用$this进行回调

代码语言:javascript
复制
<?php

class MY_Form_validation extends CI_Form_validation {

    function run($module = '', $group = '') {
        (is_object($module)) AND $this->CI = &$module;
        return parent::run($group);
    }

}   
EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2015-07-08 03:43:09

问题解决了,似乎是代码点火器hmvc表单验证的一个问题,而不是验证复选框数组。所有其他的回调都可以正常工作,尽管只是复选框,而不是验证正确。

我的固定工作

因此,对于我来说,必须使用自己的自定义验证,使用服务器REQUEST_METHOD,如下例所示。

代码语言:javascript
复制
<?php

class Backup extends MX_Controller {

private $error = array();

public function __construct() {
    parent::__construct();
    $this->load->library('admin/users');
    $this->load->model('admin/tool/model_tool_backup');
    $this->load->library('form_validation');
}

public function index() {
    $tables = $this->input->post('tables');

    $data['tables'] = $this->model_tool_backup->get_tables();

    if (($this->input->server('REQUEST_METHOD') == 'POST') && $this->validate()) {

    }

    if (isset($this->error['warning'])) {
        $data['error_warning'] = $this->error['warning'];
    } else {
        $data['error_warning'] = '';
    }

    if (isset($this->error['tables'])) {
        $data['error_tables'] = $this->error['tables'];
    } else {
        $data['error_tables'] = '';
    }

    $data['sidebar'] = Modules::run('admin/common/sidebar/index');
    $data['navbar'] = Modules::run('admin/common/navbar/index');
    $data['header'] = Modules::run('admin/common/header/index');
    $data['footer'] = Modules::run('admin/common/footer/index');

    $this->load->view('tool/backup_view', $data);

}

public function validate() {
    if (!isset($_POST['tables'])) {
        $this->error['tables'] = 'You must select at least one item';
    }

    return !$this->error;
}

public function backup_codeigniter($tables) {
    $this->load->dbutil();

    $prefs = array(
        'tables' => $tables, 
        'ignore' => array(),
        'format' => 'txt',
        'filename' => $this->db->database . '_' . date('Y-m-d_H-i-s', time()) . '_backup.sql',
        'add_drop' => TRUE,
        'add_insert' => TRUE,
        'newline' => "\n" 
    );

    return $this->dbutil->backup($prefs);
}

}
票数 0
EN

Stack Overflow用户

发布于 2015-07-07 14:35:34

更改这些行(相应地):

代码语言:javascript
复制
$this->form_validation->set_rules('tables[]', 'Table', 'callback_check');
...
if ($this->form_validation->run($this) == FALSE) {

对此:

代码语言:javascript
复制
$this->form_validation->set_rules('tables', 'Table', 'callback_check');
...
if ($this->form_validation->run() == FALSE) {

现在,您的回调函数应该接收如下所发送的参数:

代码语言:javascript
复制
public function check($post_tables) {

    if (!isset($post_tables)) {
        $this->form_validation->set_message('check', 'You Must Select At Least One Table To Do Back Up!');
        return FALSE;
    } else {
        return TRUE;
    }

}

更新:

由于此问题与Codeigniter的非标准HMVC设置有关,请阅读本博客,我发现这一行:

代码语言:javascript
复制
 $this->form_validation->CI =& $this;   // Hack to make it work properly with HMVC

你可能会找到你要找的东西:https://github.com/ci-bonfire/Bonfire/issues/295

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/31269963

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档