简体   繁体   English

CodeIgniter:使用多维 POST 数据验证表单

[英]CodeIgniter: Validate form with multidimensional POST data

So the framework is CodeIgniter 2.0.2.所以框架是CodeIgniter 2.0.2。 I have a form that has groups of fields that correspond to rows in a database.我有一个表单,其中包含与数据库中的行相对应的字段组。 The names of the fields are in the format:字段的名称采用以下格式:

opt[0][foo]
opt[0][bar]
opt[1][foo]
opt[1][bar]
etc...

The index (1,2,etc...) does not correspond to row IDs in the database, it is simply a way to split up the groups of fields.索引 (1,2,etc...) 与数据库中的行 ID 不对应,它只是一种拆分字段组的方法。 There may be gaps in the index as users are able to add and remove an arbitrary number of the field groups.由于用户可以添加和删除任意数量的字段组,因此索引中可能存在空白。 All groups are identical, that is, they contain exactly the same set of fields with the same second level names.所有组都是相同的,也就是说,它们包含完全相同的一组具有相同二级名称的字段。

I want to be able to use CodeIgniter's validation library to validate the form and (p)re-populate as necessary.我希望能够使用 CodeIgniter 的验证库来验证表单并根据需要(p)重新填充。 I've found plenty of posts (in addition to the excellent CI user guide) on the pre-populating and I know how to get the working with the re-populating in general.我发现了很多关于预填充的帖子(除了优秀的 CI 用户指南),而且我知道如何在一般情况下进行重新填充。 However, this is the first time I've had to try it with the indexed field names as above.但是,这是我第一次尝试使用上面的索引字段名称。 I've tried the below and it doesn't work:我已经尝试了以下方法,但它不起作用:

array(
    'field' => 'opt[][foo]',
    'label' => 'Foo',
    'rules' => 'required'
)

I'm guessing I was just hoping for too much and CodeIgniter doesn't support what I need it to do.我猜我只是希望太多,而 CodeIgniter 不支持我需要它做的事情。 Extending the existing form validation library is an option so if anyone has been in the same situation and can provide some tips that would be very welcome.扩展现有的表单验证库一种选择,因此如果有人遇到同样的情况,可以提供一些非常受欢迎的提示。

UPDATE:更新:

Just a little extra info, I've also tried validating a specifically indexed field (see below) and that also didn't work... As I understand it multidimensional validation should work in the specific case:只是一些额外的信息,我还尝试验证一个专门索引的字段(见下文),但这也不起作用......据我所知,多维验证应该在特定情况下工作:

array(
    'field' => 'opt[0][foo]',
    'label' => 'Foo',
    'rules' => 'required'
)

The following controller code works for me on CI 2.0.2以下 controller 代码适用于 CI 2.0.2

public function test() {

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

        $this->form_validation->set_rules('test[test1][test2]', 'Test', 'required|valid_email');

        $this->form_validation->run();  

        echo validation_errors();

        echo form_open($this->uri->uri_string());
        echo form_input('test[test1][test2]', set_value('test[test1][test2]'));
        echo form_submit();
        echo form_close();

    }

You can use this to loop through the opt variable and set validation rules for each input.您可以使用它来遍历opt变量并为每个输入设置验证规则。

if(!empty($opt))
    {
        foreach($opt as $id => $value)
        {
            $this->form_validation->set_rules('opt[' . $id . '][foo]', 'Foo', 'required');
            $this->form_validation->set_rules('opt[' . $id . '][bar]', 'Bar', 'required');
        }
    }

You should take a look at the callback functions for the validating class - this should help you accomplish what you need for validation.您应该查看验证 class 的回调函数- 这应该可以帮助您完成验证所需的内容。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM