收藏
回答

input bindinput的问题

框架类型 问题类型 终端类型 微信版本 基础库版本
小程序 Bug 微信安卓客户端 8.0.28 WebChatLib 2.27.0(2022.10.13 18:50:44)

代码如下,开发工具测试正常,但真机测试一直有问题,控件上能看到输入内容,但是日志打印获取不到。重启手机后就正常,过一段时间后问题又复现。手机是荣耀9X pro,系统是鸿蒙2.0.0,微信是8.0.28

<view class='flex' style='padding:10rpx'>
  <text style='color:#3D3D3D;margin:0rpx 30rpx'>账号:</text>
  <input bindinput="bindAccountInput" style='background:#fff;padding:10rpx' value='{{username}}' />
</view>
<view class='flex' style='padding:10rpx'>
  <text style='color:#3D3D3D;margin:0rpx 30rpx'>密码:</text>
  <input bindinput="bindPasswordtInput" style='background:#fff;padding:10rpx' password="true" value='{{password}}' />
</view>


bindAccountInput(e) {
    console.log("username:"+e.detail.value)
},
bindPasswordtInput(e) {
    console.log("password:"+e.detail.value)
},

回答关注问题邀请回答
收藏

2 个回答

  • 社区技术运营专员-Jahozheng
    社区技术运营专员-Jahozheng
    2022-10-19

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2022-10-19
    有用
    回复
  • 邓燎燕
    邓燎燕
    2022-10-19

    查看其他帖子,修改低版本的旧基础库后正常

    2022-10-19
    有用
    回复
登录 后发表内容