我在我的config/form_validation.php
和我的controller
. 来自的字段和标签form_validation
与我在我controller
的id、name和placeholder中指定的相同
我是否必须将该数据提取到第三个位置并在这两个位置中引用它?
应用程序/配置/form_validation.php
$config = array(
'register' => array(
array(
'field' => 'register_username',
'label' => 'Username',
'rules' => 'trim|required|exact_length[5]'
),
.....
应用程序/控制器/mycontroller.php
$this->viewdata['register_username'] = array(
'id' => 'register_username',
'name' => 'register_username',
'type' => 'text',
'placeholder' => 'Username'
);
...