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
公司项目使用了 Antd,而 Antd 依赖了 rc-input 的代码。通过查看源码后发现 onPressEnter 使用了 onkeydown 实现检查是否按下 Enter,但这种实现会导致在 Mac 系统上使用中文输入法的情况下,输入任意内容不选择任何联想项时按下 Enter 键,会触发对应逻辑,正常情况下应该不做处理?个人尝试后发现使用 onkeypress 是没有问题的。
rc-input
onPressEnter
Enter
onkeypress
这是我写的 最小复现 Demo,如果使用非 onkeypress 的方式捕获,则会触发此问题,Windows 貌似没有出现此问题。
rc-input 的最小复现
The text was updated successfully, but these errors were encountered:
No branches or pull requests
公司项目使用了 Antd,而 Antd 依赖了
rc-input
的代码。通过查看源码后发现onPressEnter
使用了 onkeydown 实现检查是否按下 Enter,但这种实现会导致在 Mac 系统上使用中文输入法的情况下,输入任意内容不选择任何联想项时按下Enter
键,会触发对应逻辑,正常情况下应该不做处理?个人尝试后发现使用onkeypress
是没有问题的。这是我写的 最小复现 Demo,如果使用非
onkeypress
的方式捕获,则会触发此问题,Windows 貌似没有出现此问题。rc-input 的最小复现
123123.mp4
The text was updated successfully, but these errors were encountered: