wx.closeBLEConnection(OBJECT) 失败?
- 需求的场景描述(希望解决的问题)
var deviceId = e.currentTarget.dataset.id;
console.log(deviceId) // 有值的
// 不知道为什么 会 失败 返回10001 错误
wx.closeBLEConnection({
deviceId: deviceId,
success: function (res) {
console.log(res)
console.log(‘关闭之前的设备连接’)
},
fail: function (err) {
console.log(‘关闭失败’)
console.log(err)
return false;
}
})
- 希望提供的能力