ant-design / ant-design-mobile

Essential UI blocks for building mobile web apps.
https://mobile.ant.design
MIT License
11.54k stars 2.38k forks source link

<Input type="number" min={0} ... /> 可以输入正负,监测不到且修改状态无效 #6484

Open VyingG opened 7 months ago

VyingG commented 7 months ago

Version of antd-mobile

"antd-mobile": "^5.33.0"

Description

const [money, setMoney] = useState("") <Input type="number" value={money} min={0} ... /> 可以输入正负,可以连续输入两个; onChange 方法监测不到,需要再输入数字才能监测到; onKeyDown 原生方法可以监测到,修改状态无效;

day-xue commented 7 months ago

所以不应该是这样的吗...