我有一个带有 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。