当我尝试设置我的主键列时,我在代码点火器的设置规则表单验证时遇到问题。
$this->form_validation->set_rules('pgw_nip', 'pgw_nip','required|is_unique|max_length[25]');
我在form_validation规则上收到错误消息。 虽然我没有使用该规则,但它运行良好。
这是因为无法加载相关库
方法01
public function __construct()
{
parent::__construct();
$this->load->library('form_validation');
$this->load->helper('form');
}
方法02
在application/config/autoload.php
$autoload['libraries'] = array('form_validation');
$autoload['helper'] = array('url', 'form');
Form_Validation 点火器