# getAllConnectedDeviceInfo ^6.8
获取已发现的所有设备信息
# 请求参数
- N/A
# 接口调用示例
this.$bridge
.getAllConnectedDeviceInfo()
.then(res => {
this.$alert(res)
})
.catch(err => {
this.$toast(err)
})
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
# 返回参数
- 成功时返回
Prop | Type | Comment |
---|---|---|
code | Number | 0 |
msg | String' | success |
deviceList | Array | 蓝牙列表 |
# 返回示例
{
"code": 0,
"msg":"success",
"deviceList":[
{"name":"midea", "deviceId":"33F3DF2C-55B2-CACD-1CEC-39E24DDBC347"},
{"name":"midea-test", "deviceId":"33F3SF2C-55B2-CACD-7CEC-56E23HHBC347"}
]
}
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10