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
1、源码1570行 应该优先进行正则的判断 再次进行value为空的判断才对,否则当正则验证可以为空的时候导致无法通过。
2、源码2530行 初始化滚动条时,进行了三次没有缓存并且没有默认值传入 并且默认值不为空的时候才进行初始化,导致初始化滚动条时出现异常,应该是没有缓存或者有传入值存在并且传入的值为有效参数 if (lineTemp[level] === undefined || (defaults.defaultValue && defaults.defaultValue[level] !== undefined))
3、表单验证 只对已经在页面中存在了的 有required属性的表单进行了blur focus的绑定(源码1713行),而对于未来事件并没有任何效果,导致使用的时候有了很多的局限性,希望能对未来事件也可以进行相应的操作
The text was updated successfully, but these errors were encountered:
@slingsky 赞!谢谢你宝贵的建议:
weui.form.checkIfBlur('父层的selector',...)
Sorry, something went wrong.
优化表单验证逻辑,如果有表达式,先进行表达式校验,再进行为空校验。目的是符合input选填,但要是填了的话一定要符合正则的需求。#66
f719d65
No branches or pull requests
1、源码1570行 应该优先进行正则的判断 再次进行value为空的判断才对,否则当正则验证可以为空的时候导致无法通过。
2、源码2530行 初始化滚动条时,进行了三次没有缓存并且没有默认值传入 并且默认值不为空的时候才进行初始化,导致初始化滚动条时出现异常,应该是没有缓存或者有传入值存在并且传入的值为有效参数
if (lineTemp[level] === undefined || (defaults.defaultValue && defaults.defaultValue[level] !== undefined))
3、表单验证 只对已经在页面中存在了的 有required属性的表单进行了blur focus的绑定(源码1713行),而对于未来事件并没有任何效果,导致使用的时候有了很多的局限性,希望能对未来事件也可以进行相应的操作
The text was updated successfully, but these errors were encountered: