代码如下,开发工具测试正常,但真机测试一直有问题,控件上能看到输入内容,但是日志打印获取不到。重启手机后就正常,过一段时间后问题又复现。手机是荣耀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)
},
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
查看其他帖子,修改低版本的旧基础库后正常