真机调试太菜了,调试出来的小程序页面页面直接一片黑,搞了好几年了的小程序,到处都是毛病
微信开发者工具 真机调试报错?Error: components/common/nav-bar/uni-nav-bar.bak.js does not exists
2022-06-17蓝牙在ios上说真难用,现在小程序在ios搜索到连接一次后,,同样的代码,startBluetoothDevicesDiscovery搜索都监听不到,
小程序IOS搜索蓝牙设备有时候搜索不到- 在IOS设别上调用wx.startBluetoothDevicesDiscovery时,如果以前没连接过这个蓝牙设备,就会出现很难搜索到这个蓝牙设备的情况,我退出小程序再进去搜索的时候就能很快的搜索到,问题就出现在第一个搜索新设备的时候 - 预期表现 - 复现路径 - 提供一个最简复现 Demo // 1、获取本机蓝牙适配器状态 wx.getBluetoothAdapterState({ success(res) { let available = res.available; if (available == false) { wx.showModal({ title: '提示', content: '手机蓝牙不可用,请重启后再试', showCancel: false, success(res) { } }) return; } // 2、发现周边设备 wx.startBluetoothDevicesDiscovery({ services: [], success: function (res) { // console.log('开始搜索周边设备') wx.showLoading({ title: '正在搜索中', }); // 3、获取周边设备 wx.getBluetoothDevices({ success: function (res) { for (let i = 0; i < res.devices.length; i++) { if (lockNum.indexOf('CASZX') >= 0) { var name = res.devices[i].name; if (name == lockNum) { _this.setData({ deviceId: res.devices[i].deviceId }); wx.hideLoading() _this.stopBluetoothDevicesDiscovery(); _this.openLock(flg) break } } else if (app.isMac(lockNum)) { var advertisData = res.devices[i].advertisData; var mac = _this.ab2hex(advertisData); if (mac == lockNum) { _this.setData({ deviceId: res.devices[i].deviceId }); wx.hideLoading() _this.stopBluetoothDevicesDiscovery(); _this.openLock(flg) break } } } }, }) //4 、监听发现设备 wx.onBluetoothDeviceFound(function (devices) { for (let i = 0; i < devices.devices.length; i++) { if (lockNum.indexOf('CASZX') >= 0) { var name = devices.devices[i].name; if (name == lockNum) { _this.setData({ deviceId: devices.devices[i].deviceId }); wx.hideLoading() _this.stopBluetoothDevicesDiscovery(); _this.openLock(flg) break } } else if (app.isMac(lockNum)) { var advertisData = devices.devices[i].advertisData; var mac = _this.ab2hex(advertisData); if (mac == lockNum) { _this.setData({ deviceId: devices.devices[i].deviceId }); wx.hideLoading() _this.stopBluetoothDevicesDiscovery(); _this.openLock(flg) break } } } }) }, complete: function (res) { } }) }, fail: function (res) { console.log(res) } })
2022-06-17同样的问题,都有绑定,就是这个提示!这个功能只有摆设起不做了
微信开放平台中绑定过了,应用和小程序未绑定在同一微信开放平台,这是什么原因?[图片][图片][图片]
2020-07-25