-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
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
fix(taro-components): 优化 input 组件 type 为 number 或 digit 时,输入特殊符号导致交互异常问题 #12476
Conversation
1 similar comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
感谢贡献
这个改动产生一个问题,输验证码时,比如 0571,第一位 0 就无法输入 |
最新代码3.5.7 好像没有复现出问题来,可以描述下是什么环境下 |
噢我是 3.5.6,type 是 number 时,第一位输入 0,然后输入其他数字,0 就会消失。 |
@shanlh 好像难以复现出来。 看了下源码应该没有对首位为0的情况做特殊处理;可以新开一个 issue 然后补充一下运行环境,如果可以,还可以提供一下简单的 demo |
2022-11-02.14.22.11.mov
我的描述遗漏了一点:需要数据绑定,我复现的时候没有加 v-model,就不会出现这个问题 |
这个 PR 做了什么? (简要描述所做更改)
优化 H5 端 input 组件 type 为 number 或 digit 时, 输入特殊符号导致交互异常问题。
描述:Web 的 input 组件 type=number时,当开发者输入特殊符号或者多个小数点时,input 组件的 value 值会表现为空,从而在业务场景下,会出现不符合预期的多种表现。在唤起 Web 端数字键盘时,通过对特殊符号的输入拦截可以做到一定交互体验优化。
这个 PR 是什么类型? (至少选择一个)
这个 PR 涉及以下平台: