框架类型 | 问题类型 | 终端类型 | 微信版本 | 基础库版本 |
---|---|---|---|---|
小程序 | 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)
},
网友回复
社区技术运营专员-Jahozheng:
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
邓燎燕:
查看其他帖子,修改低版本的旧基础库后正常