我的模型中有一些自定义验证功能。例如,在某些字段中,我有一个验证规则,用于检查是否有任何HTML是文本。我的问题是,当我在两个字段上使用相同的验证规则时,视图中的错误消息会出现在BOTH字段中,即使只有一个失败验证失败。
例如:
'field1' => array(
'noTags' => array(
'rule' => array( 'detectTags' ),
'message' => 'HTML tags are not allowed.'
)
),
'field2' => array(
'noTags' => array(
'rule' => array( 'detectTags' ),
'message' => 'HTML tags are not allowed.'
)
),
...
public function detectTags($check) {
$value = array_values($check);
$string = $value[0];
return ($string == strip_tags($string));
}
我已经有了解决方法(见下文)。我用每个字段的唯一函数包装验证规则,一切正常。但这很烦人。我怀疑有更好的方法。它是什么?
'field1' => array(
'noTags' => array(
'rule' => array( 'detectTags1' ),
'message' => 'HTML tags are not allowed.'
)
),
'field2' => array(
'noTags' => array(
'rule' => array( 'detectTags2' ),
'message' => 'HTML tags are not allowed.'
)
),
...
public function detectTags1($check) {
return $this->_detectTags($check);
}
public function detectTags2($check) {
return $this->_detectTags($check);
}
private function _detectTags($check) {
$value = array_values($check);
$string = $value[0];
return ($string == strip_tags($string));
}
答案 0 :(得分:0)
试试这个
'field1' => array(
'noTags1' => array(
'rule' => array( 'detectTags' ),
'message' => 'HTML tags are not allowed.'
)
),
'field2' => array(
'noTags2' => array(
'rule' => array( 'detectTags' ),
'message' => 'HTML tags are not allowed.'
)
),