收藏
回答

wx.getConnectedBluetoothDevices() 导致ios设备微信闪退 ?

API: wx.getConnectedBluetoothDevices()

微信版本: 8.0.31

基础库: 2.30.0

ios设备执行此 API 直接导致微信闪退, 并且没有报错.

wx.getConnectedBluetoothDevices({
						services: this.serviceId,
						success: res => {
							console.log('getConnectedBluetoothDevices'); // 控制台没有打印
							if (res.devices.length) {
								console.log('找到已连接的主服务');
								// 断开此连接, 重新连接蓝牙
								wx.closeBLEConnection({
									deviceId: res.devices[0].deviceId,
									complete: res => {
										console.log(res);
										this.getBluetoothDevice();
									}
								});
							} else {
								console.log('没有找到已连接的主服务');
								this.getBluetoothDevice();
							}
						},
						fail: err => {
							console.log('没有找到已连接的主服务');  // 控制台没有打印
}
回答关注问题邀请回答
收藏

1 个回答

  • Demons
    Demons
    2023-02-10

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2023-02-10
    有用
    回复
登录 后发表内容