我也遇到了,之前正常,更新后就不行了,查看系统端口,8001也没监听
小程序真机调试提示连接局域网WS://192.168.0.8:8001失败?1.手机和电脑都在局域网里,手机可以通过局域网地址访问本地服务 2.已勾选不校验合法域名 3.防火墙已关 4.小程序开发者工具版本 1.0.5.2204250 5.真机调试2.0
09-12查看其他帖子,修改低版本的旧基础库后正常
input bindinput的问题代码如下,开发工具测试正常,但真机测试一直有问题,控件上能看到输入内容,但是日志打印获取不到。重启手机后就正常,过一段时间后问题又复现。手机是荣耀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) }, [图片]
2022-10-19