Results 2 issues of 龙猫

在自动保存场景中,期望通过 getValues() 或 getValues(false) 时,不要影响当前已经对用户提示的错误状态,静默的把数据返回回来。

整个框架里面只有 ./library/form/element.php 中 471 行使用了该方法: ``` $this->_is_valid = (bool)QValidator::validateBatch($data, $this->_validations, QValidator::CHECK_ALL, $failed); if (!$this->_is_valid) { $this->_error_msg = array(); foreach ($failed as $v) { $this->_error_msg[] = array_pop($v); } } ``` 在接下来的...