We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minLen maxLen验证出现bug 当列属性 dataType为int或float,validations 包含 minLen maxLen 代码在 else if ("minLen" == h) o = a(o), p = a(p), o.length >= p && (u = !0); else if ("maxLen" == h) o = a(o), p = a(p), o.length <= p && (u = !0); o.length 值是 undefiend 验证不会成功 我的处理是 (o+'').length 版本V3.5.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
minLen maxLen验证出现bug
当列属性 dataType为int或float,validations 包含 minLen maxLen
代码在
else if ("minLen" == h) o = a(o), p = a(p), o.length >= p && (u = !0);
else if ("maxLen" == h) o = a(o), p = a(p), o.length <= p && (u = !0);
o.length 值是 undefiend
验证不会成功
我的处理是
(o+'').length
版本V3.5.1
The text was updated successfully, but these errors were encountered: