有没有办法调用多个规则集(规则集在配置文件中)。如:
$this->form_validation->run('contact_info', 'billing_info')
这样我可以更新包含所有这些规则集的表单,或者只更新其中一个规则集。如果这是不可能的,除了创建一个新的“合并”规则集之外,我还有什么选择。我只需要运行两次验证吗?
答案 0 :(得分:3)
with a model named: tigercats
if ( $this->tigercats->_validateContact() == FALSE ) {
$this->formerrormessage = 'Not enough fur in contact' ;
$this->_showValidationFailed() ; }
elseif ( $this->tigercats->_validateBilling() == FALSE ) {
$this->formerrormessage = 'Claws missing in billing' ;
$this->_showValidationFailed() ; }
else { $this->_showHappyTigersGetPaid() ; }
显然,如果您不需要自定义消息,您可以以更加压缩的方式运行两次验证。
答案 1 :(得分:-1)