这个问题解决了吗?也碰到小米10的,非要说是我小程序的问题,然后放一个微信官方的搜索蓝牙的例子给他测,也是搜不到,他说你找人解决吧!人也嘛了
wx.onBluetoothDeviceFound不触发调用,已经提前获取蓝牙权限和定位权限?//调试基础库2.33.0 //打开蓝牙授权 openBluetoothAdapter() { if (this._discoveryStarted) { //已经扫描了 wx.showToast({ title: '搜索附近设备中...', }) return; } wx.openBluetoothAdapter({ success: (res) => { console.log('打开蓝牙授权成功', res) this.startBluetoothDevicesDiscovery() }, fail: (res) => { wx.showToast({ title: '蓝牙授权失败', }) } }) }, //开始扫描 startBluetoothDevicesDiscovery() { if (this._discoveryStarted) { //已经扫描了 return; } this._discoveryStarted = true wx.startBluetoothDevicesDiscovery({ //开始搜寻附近的蓝牙外围设备->需要修改配置 allowDuplicatesKey: true, //是否允许上报同一台设备 success: (res) => { // console.log('开始搜寻附近的蓝牙外围设备', res) this.onBluetoothDeviceFound() }, }) }, //监听函数->搜索到新设备 onBluetoothDeviceFound() { wx.onBluetoothDeviceFound((res) => { //安卓某些机型,不触发调用,已经获取到蓝牙权限和定位权限了 console.log('获取列表数据', res); }) },
2023-09-01这种我做出来了,请问图片触摸取色有做出来的? .colorWheel_img{background: conic-gradient(#7fff00 0deg,yellow 45deg,red 90deg,fuchsia 135deg,blue 225deg,aqua 270deg,#00ff28 315deg,#7fff00);border-radius: 50%;}
小程序取色器小程序能不能实现那种圆盘类型的取色器呢??像这种[图片]
2023-03-06