# disConnectBluetooth ^7.8
断开蓝牙连接
# 请求参数
Prop | Type | Default | Comment |
---|---|---|---|
mac | String | N/A | //安卓:蓝牙Mac地址;iOS:外设uuid |
# 接口调用示例
const params = {
"mac": "//安卓:蓝牙Mac地址;iOS:外设uuid"
}
this.$bridge
.disConnectBluetooth(params)
.then(res => {
this.$alert(res)
})
.catch(err => {
this.$toast(err)
})
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
# 接口返回示例
//成功出参:通过全局事件receiveMessageFromApp输出
this.$bridge.addEventListener('receiveMessageFromApp', (res) => {
console.log('xxxxxxxxxxxxx', res)
})
// res格式如下:
{
messageType: 'disConnectBluetooth', //H5用来判断消息类型,然后做相对应的处理
messageBody: {"mac":"xxx"} //安卓:蓝牙Mac地址;iOS:外设uuid
}
// 失败出参:
{
errorCode:1//参数缺少mac、2未找到外设
errorMsg:'失败原因描述'
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17