0

我有一个带有 3 个单选按钮的表单。ID 在形式上是唯一的,并且三个都具有相同的名称,即“vehicle_type”。当我进行源视图时,单选按钮会正确生成

<input type="radio" name="vehicle_type" id="type_vehicle" value="1">
<input type="radio" name="vehicle_type" id="type_trailer" value="2" checked>
<input type="radio" name="vehicle_type" id="type_plant" value="3">

我没有为无线电组设置验证规则,但我的表单抱怨该字段是必需的。

我可以通过运行来确认没有验证规则:

echo $this->form_validation->has_rule('vehicle_type');

它表示没有验证。在另一个字段(即client_name)上使用该调用返回“boolean:1”

如果没有设置验证规则,为什么该字段会尝试验证?

编辑

我在我的项目中使用 Wiredesignz HMVC,所以 Form_validation 类被扩展了。

        if ($this->form_validation->run($this)) {
            $test = do_file_upload($post_data);
        } else {
            var_dump(validation_errors()); 

            // echos "The Vehicle type field is required"
        }

此问题仅发生在单选按钮上:

所有其他没有单选按钮的表单都使用相同的检查正确验证:($this->form_validation->run($this)

我的表单验证是用这个函数设置的:

public function set_form_validation_rules($data)
{
    foreach ($data as $field) {
        if (!empty($field['validation']['rules'])) {
            if (!is_array($field['validation']['rules'])) {
                $this->form_validation->set_rules($field['name'], $field['label'], $field['validation']['rules']);
            } else {
                foreach ($field['validation']['rules'] as $fv) {
                    $this->form_validation->set_rules($field['name'], $field['label'], $fv);
                }
            }
        }
    }
}

单选按钮定义为:

        $data['fields']['type_plant'] = [
            'name' => 'vehicle_type',
            'id' => 'type_plant',
            'input_class' => 'input-group width-100',
            'color' => 'red',
            'value' => 3,
            'validation' => '',
            'checked' => ($posts['vehicle_type'] == 3)
        ];

该组中的其他两个单选按钮是相同的,只是具有不同的值和 ID。

4

3 回答 3

0

为表单验证和其他助手加载库application/config/autoload.php

$autoload['libraries'] = array('form_validation');

$autoload['helper'] = array('form', 'url');

在您的控制器文件中:

$this->form_validation->set_rules('vehicle_type', 'Vehicle Type', 'required');

在您的视图文件中,使用以下代码打印验证错误

<?php echo validation_errors(); ?>
于 2019-10-04T07:31:00.720 回答
0

用这个,

$this->form_validation->set_rules('vehicle_type', 'Vehicle type', 'required');
于 2019-10-04T06:39:52.123 回答
0

上面给出的答案告诉我如何使用表单验证。这不是我要求的。我远不止于此-因为它们都起作用了,除了单选按钮。事实证明,将验证数组错误地传递给数组中的函数$data。一旦我正确传递了数据,表单验证也有效。

于 2019-10-04T21:33:34.933 回答