7

可能重复:
Codeigniter 2 表单在一页上,validation_errors 问题

我的页面中有 2 个表单。我需要一次验证它们 1,但我认为存在冲突。这里看看:

在此处输入图像描述

当我提交任一表单时,它们都显示相同的错误消息

validation_errors()用来显示消息。如何一次验证表格 1?

这是代码

public function update_user_info(){ 
    $this->form_validation->set_rules("firstname","First Name","required");     
    $this->form_validation->set_rules("lastname","Last Name","required"); 
    $this->form_validation->set_rules("middlename","Middle Name","required"); 
    if($this->form_validation->run()===false){ 
        //wrong 
    } 
    else { //correct } 
}
4

3 回答 3

7

我刚遇到这个问题。我的解决方案是:

1.首先设置第一个提交按钮名称='update_info'

2.第二次设置第二次提交按钮名称='change_password'

3.最后更改您的 update_user_info()。

public function update_user_info(){ 
    if (isset ($_POST['update_info'])) {
        $this->form_validation->set_rules("firstname","First Name","required");     
        $this->form_validation->set_rules("lastname","Last Name","required"); 
        $this->form_validation->set_rules("middlename","Middle Name","required"); 
        if($this->form_validation->run()===false){ 
            //wrong 
        } 
        else { //correct }             
    }
    else if (isset ($_POST['change_password'])){
        form_validation of your change password
    }

我认为这是解决您的问题的最简单方法。

祝你好运。

于 2012-10-09T10:50:00.483 回答
5

您可以为每个表单获取一个隐藏输入

First Form:
<input type="hidden" name="form" value="form1" />

Second Form:
<input type="hidden" name="form" value="form2" />

在您的控制器中,您可以为每个表单设置规则数组

$config['form1'] = array(
               array(
                     'field'   => 'username', 
                     'label'   => 'Username', 
                     'rules'   => 'required'
                  ),
               array(
                     'field'   => 'password', 
                     'label'   => 'Password', 
                     'rules'   => 'required'
                  ),
            );

$config['form2'] = array(
               array(
                     'field'   => 'email', 
                     'label'   => 'Email', 
                     'rules'   => 'required'
                  ),
            );

Now check which hidden field posted

$form = $this->input->post('form')


Now you can set rules as below

$this->form_validation->set_rules($config[$form]);

if ($this->form_validation->run()):

    // process form

else:
        $data[$form.'_errors'] = validation_errors();
endif;

现在在您的视图文件中

if (isset($form1_errors)) echo $form1_errors;
if (isset($form2_errors)) echo $form2_errors;
于 2012-10-09T08:52:11.747 回答
2

如果每个表单都有不同的验证错误,您可以检查validation_errors.

据我所见,validation_errors仅允许您更改错误的分隔符,仅此而已。但是,您可以尝试显示单个表单错误,如下所示:<?php echo form_error('username'); ?>

于 2012-10-09T08:41:01.953 回答