租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
236 B

3 months ago
  1. export function checkValid(_value, _rules) {
  2. _rules.forEach(rule => {
  3. if (rule.validator) {
  4. rule.validator(_value);
  5. } else if (rule.pattern && !rule.pattern.test(_value)) {
  6. throw new Error(rule.msg);
  7. }
  8. });
  9. }