antd-mobile InputItem type=phone的疑问

发布于 2022-09-04 14:48:01 字数 1231 浏览 19 评论 0

browser / google chrome / antd-mobile: 1.0.3

code:

<InputItem
     {...getFieldProps('phone',
      {
        initialValue: item.consigneePhone,
        rules: [
          {required: true, message: '请输入手机号码'},
        ],
      })}
    error={!!getFieldError('phone')}
    onErrorClick={() => {
      Toast.fail(getFieldError('phone'), 1);
    }}
    type="phone"
    placeholder="请输入手机号码">
    手机号码
</InputItem>

疑问:

  1. 设置 value = '18612341234' 后, 无法进行输入操作

  2. 设置 defaultValue = '18612341234' 无效, 并且提示警告

    `Warning: InputItem contains an input of type tel with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://fb.me/react-controlled-components`
  3. 通过getFieldProps 设置initialValue , value正常, 但是格式需要手动处理

期望结果

设置 value 正常, 可以进行编辑. 并且有格式, eg. 186 1234 1234

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温暖的光 2022-09-11 14:48:01

报告 bug 上 github 提 issue,仔细阅读issue模板,提供能复现的在线demo最佳

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文